mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
36 lines
959 B
JSON
36 lines
959 B
JSON
|
{
|
||
|
"compileOnSave": false,
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": "../",
|
||
|
"outDir": "../backend",
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": false,
|
||
|
"noImplicitOverride": false,
|
||
|
"noPropertyAccessFromIndexSignature": false,
|
||
|
"strictPropertyInitialization":false,
|
||
|
"strictNullChecks": false,
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"sourceMap": false,
|
||
|
"declaration": false,
|
||
|
"downlevelIteration": true,
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"target": "ES2022",
|
||
|
"module": "ES2022",
|
||
|
"useDefineForClassFields": false,
|
||
|
"lib": [
|
||
|
"ES2022"
|
||
|
],
|
||
|
"paths": {
|
||
|
"crypto": ["node_modules/crypto-browserify"],
|
||
|
"stream": ["node_modules/stream-browserify"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"./**/*"
|
||
|
]
|
||
|
}
|
||
|
|