mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
29 lines
778 B
JSON
29 lines
778 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2022",
|
||
|
|
"module": "es2022",
|
||
|
|
"lib": ["es2017", "esnext.asynciterable"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"removeComments": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strictFunctionTypes": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"rootDir": "."
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules"],
|
||
|
|
"include": ["./**/*.ts"]
|
||
|
|
}
|