Files
element-call/tsconfig.json

35 lines
868 B
JSON
Raw Normal View History

2022-05-06 11:32:09 +01:00
{
"compilerOptions": {
2022-05-06 22:44:03 +01:00
"target": "es2016",
2022-05-30 10:09:13 +01:00
"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,
2022-05-06 11:32:09 +01:00
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./test/**/*.ts",
"./test/**/*.tsx"
],
"exclude": ["node_modules"]
2022-05-06 11:32:09 +01:00
}