mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
e11b0cef47
* Add static analysis for tsc --strict * Make tsconfig legal * Make tsconfig more legal * Update static_analysis.yaml * Test strict mode check * Revert "Test strict mode check" This reverts commit 879df9879738fabfa02466ce07634a0f5c132311.
32 lines
621 B
JSON
32 lines
621 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": [
|
|
"es2020",
|
|
"dom",
|
|
"dom.iterable"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"./test/end-to-end-tests/"
|
|
]
|
|
}
|