mirror of https://github.com/vector-im/riot-web
32 lines
623 B
JSON
32 lines
623 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": [
|
|
"es2020",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.tsx",
|
|
],
|
|
"exclude": [
|
|
"./test/end-to-end-tests/"
|
|
]
|
|
}
|