You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
994 B
30 lines
994 B
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/diff-dom.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/opus-recorder.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/png-chunks-extract.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/sanitize-html.d.ts",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx",
|
|
"./scripts/*.ts"
|
|
]
|
|
}
|
|
|