mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
0105162ffa
An attempt to fix https://github.com/vector-im/element-call/issues/1132
35 lines
868 B
JSON
35 lines
868 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "es2020",
|
|
"jsx": "react-jsx",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
|
|
// From Matrix-JS-SDK
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true
|
|
|
|
// TODO: Enable the following options later.
|
|
// "forceConsistentCasingInFileNames": true,
|
|
// "noFallthroughCasesInSwitch": true,
|
|
// "noImplicitOverride": true,
|
|
// "noImplicitReturns": true,
|
|
// "noPropertyAccessFromIndexSignature": true,
|
|
// "noUncheckedIndexedAccess": true,
|
|
// "noUnusedParameters": true,
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|