2019-12-24 03:48:19 +01:00
|
|
|
{
|
2022-12-09 13:28:29 +01:00
|
|
|
"compilerOptions": {
|
2024-08-30 16:21:48 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
2022-12-09 13:28:29 +01:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2024-08-01 18:14:27 +02:00
|
|
|
"useDefineForClassFields": true,
|
2023-11-19 20:38:51 +01:00
|
|
|
"module": "es2022",
|
2022-12-09 13:28:29 +01:00
|
|
|
"moduleResolution": "node",
|
2024-08-01 18:14:27 +02:00
|
|
|
"target": "es2022",
|
2022-12-09 13:28:29 +01:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
|
|
|
"jsx": "react",
|
2024-06-26 17:49:29 +02:00
|
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
2024-10-14 18:11:58 +02:00
|
|
|
"strict": true,
|
|
|
|
"paths": {
|
|
|
|
"jest-matrix-react": ["./test/test-utils/jest-matrix-react"]
|
|
|
|
}
|
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",
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx",
|
|
|
|
"./test/**/*.ts",
|
2023-09-08 11:33:57 +02:00
|
|
|
"./test/**/*.tsx",
|
2024-02-23 10:57:33 +01:00
|
|
|
"./scripts/*.ts"
|
2023-09-08 11:43:44 +02:00
|
|
|
],
|
|
|
|
"ts-node": {
|
2023-11-19 20:38:51 +01:00
|
|
|
"files": true,
|
|
|
|
"moduleTypes": {
|
2024-02-23 10:57:33 +01:00
|
|
|
"*": "cjs"
|
|
|
|
}
|
|
|
|
}
|
2019-12-24 03:48:19 +01:00
|
|
|
}
|