OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/tsconfig.base.json

43 lines
1.1 KiB

{
"compilerOptions": {
"importHelpers": true,
"target": "es2015",
"module": "es2020",
"moduleResolution": "node",
"outDir": "./dist/out-tsc",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"noEmitOnError": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Increase strictness
// Enable strict once "use strict" errors can be resolved
// "strict": true;
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
// "strictFunctionTypes": true,
// Causes lots of errors in linked angularjs properties
// "strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"skipLibCheck": true,
"baseUrl": "./src/",
"typeRoots": [
"node_modules/@types",
"src/types"
],
"lib": [
"es2017",
"dom"
],
"paths": {
"@ng-select/ng-select": ["../node_modules/@ng-select/ng-select/"],
"core-app/*": ["./app/*"],
"core-components/*": ["./app/components/*"],
"core-vendor/*": ["./vendor/*"]
}
},
"compileOnSave": false
}