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/ckeditor/tsconfig.json

29 lines
678 B

{
"compilerOptions": {
"target": "ES6",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"module": "ES6",
"moduleResolution": "node",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"noEmitOnError": false,
// Increase strictness
"noImplicitAny": false,
"noImplicitThis": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"core-components/*": ["../app/components/*"],
"op-ckeditor/*": ["./*"]
}
},
"compileOnSave": false,
"exclude": [
"node_modules"
]
}