mirror of https://github.com/vector-im/riot-web
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": ["es2021", "dom", "dom.iterable"],
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
"./node_modules/matrix-react-sdk/src/@types/react.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",
|
|
"./node_modules/matrix-react-sdk/src/@types/matrix-js-sdk.d.ts",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx",
|
|
"./scripts/*.ts"
|
|
],
|
|
"ts-node": {
|
|
"files": true,
|
|
"moduleTypes": {
|
|
"*": "cjs"
|
|
}
|
|
}
|
|
}
|