mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": [
|
|
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/diff-dom.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/opus-recorder.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/png-chunks-extract.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/sanitize-html.d.ts",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx"
|
|
]
|
|
}
|