mirror of
https://github.com/AtHeartEngineer/rlnjs.git
synced 2026-01-08 20:47:55 -05:00
33 lines
758 B
JSON
33 lines
758 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noEmitOnError": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/types",
|
|
],
|
|
"paths": {
|
|
"ffjavascript": [
|
|
"./src/types/ffjavascript"
|
|
],
|
|
"snarkjs": [
|
|
"./src/types/snarkjs"
|
|
],
|
|
}
|
|
}
|
|
} |