2019-12-24 03:48:19 +01:00
|
|
|
{
|
2022-12-09 13:28:29 +01:00
|
|
|
"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",
|
2023-04-28 09:44:10 +02:00
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
2023-07-07 13:40:41 +02:00
|
|
|
"strict": true,
|
|
|
|
"useUnknownInCatchVariables": false
|
2022-12-09 13:28:29 +01:00
|
|
|
},
|
2023-05-05 10:08:36 +02:00
|
|
|
"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"
|
|
|
|
]
|
2019-12-24 03:48:19 +01:00
|
|
|
}
|