Files
Bridge-Multi/tsconfig.json
2024-07-09 18:03:44 -05:00

33 lines
768 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "Node",
"target": "ES2022",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"sourceMap": true,
"noImplicitOverride": true,
"baseUrl": ".",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"importHelpers": true,
"useDefineForClassFields": false,
"noImplicitAny": true,
"strictBindCallApply": true,
"lib": [
"ES2022",
"dom"
],
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./node_modules/@types"],
"noErrorTruncation": true,
},
"angularCompilerOptions": {
"strictTemplates": true
}
}