mirror of
https://github.com/vladmandic/automatic
synced 2026-08-27 15:41:00 +02:00
4b2f38ab7f
Signed-off-by: Vladimir Mandic <mandic00@live.com>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {},
|
|
"moduleResolution": "bundler",
|
|
"module": "es2022",
|
|
"target": "es2022",
|
|
"typeRoots": ["node_modules/@types"],
|
|
"lib": ["dom", "es2022"],
|
|
"sourceMap": true,
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": false,
|
|
"listEmittedFiles": true,
|
|
"noEmitOnError": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveConstEnums": true,
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": false,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": ["*.ts", "globals.d.ts"],
|
|
"exclude": ["ui/dist", "ui/js", "node_modules"]
|
|
}
|