22 lines
647 B
JSON
22 lines
647 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2022",
|
||
|
|
"jsx": "react",
|
||
|
|
"lib": ["es2024", "dom", "dom.iterable"],
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"module": "ESNext",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"strictNullChecks": false,
|
||
|
|
"noImplicitAny": false,
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
"../src/@types/matrix-js-sdk.d.ts",
|
||
|
|
"../../../node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
||
|
|
"../../../node_modules/matrix-js-sdk/node_modules/@matrix-org/olm/index.d.ts"
|
||
|
|
]
|
||
|
|
}
|