mirror of https://github.com/vector-im/riot-web
30 lines
968 B
JSON
30 lines
968 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|