mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
21 lines
536 B
JSON
21 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"preserveConstEnums": true,
|
|
"noImplicitThis": true,
|
|
"removeComments": false,
|
|
"inlineSourceMap": true,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"outDir": "dist",
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["demo/static/**/*.ts", "src/*.ts", "tests/*.ts"]
|
|
}
|