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,
|
2019-12-13 00:35:28 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
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",
|
2020-08-17 20:20:57 +03:00
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
2022-11-21 14:24:59 +03:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"noImplicitThis": 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",
|
|
|
|
"./test/**/*.tsx"
|
|
|
|
]
|
2019-12-13 00:35:28 +03:00
|
|
|
}
|