mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
39 lines
1010 B
JSON
39 lines
1010 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./build",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"strictNullChecks": false, // TODO: Should be fixed
|
|
"noImplicitAny": false, // TODO: Should be fixed
|
|
"noImplicitReturns": false, // TODO: Should be fixed
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2017",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictDomEventTypes": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictPropertyInitialization": false,
|
|
"strictTemplates": true,
|
|
"types" : ["node"]
|
|
},
|
|
"exclude":[
|
|
"./node_modules"
|
|
]
|
|
}
|