2019-12-12 21:35:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-08-30 13:54:14 +00:00
|
|
|
"allowImportingTsExtensions": true,
|
2022-03-02 20:49:44 +00:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
2020-04-20 18:00:54 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-04-21 09:01:05 +00:00
|
|
|
"esModuleInterop": true,
|
2024-08-01 16:14:28 +00:00
|
|
|
"useDefineForClassFields": true,
|
2023-11-13 18:35:04 +00:00
|
|
|
"module": "es2022",
|
2019-12-12 21:35:28 +00:00
|
|
|
"moduleResolution": "node",
|
2024-08-01 16:14:28 +00:00
|
|
|
"target": "es2022",
|
2022-03-09 12:05:16 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 21:35:28 +00:00
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 19:36:02 +00:00
|
|
|
"jsx": "react",
|
2024-06-26 09:34:07 +00:00
|
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
2024-02-22 10:11:25 +00:00
|
|
|
"strict": true
|
2019-12-12 21:35:28 +00:00
|
|
|
},
|
2023-02-13 11:39:16 +00:00
|
|
|
"include": [
|
|
|
|
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx",
|
|
|
|
"./test/**/*.ts",
|
2024-02-22 10:11:25 +00:00
|
|
|
"./test/**/*.tsx"
|
|
|
|
]
|
2019-12-12 21:35:28 +00:00
|
|
|
}
|