mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
4c41f62364
They are wrong anyway. Simpler to work with the raw javascript.
20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"preserveConstEnums": true,
|
|
"noImplicitThis": true,
|
|
"removeComments": false,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"outDir": "dist",
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["src/*.ts"]
|
|
}
|