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.json

35 lines
929 B

{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"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": ".",
"paths": {
"core-app/*": ["./app/*"],
"core-components/*": ["./app/components/*"]
}
},
"compileOnSave": false,
"exclude": [
"node_modules",
"ckeditor/*"
]
}