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