mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
bc8fdac491
* fix ts issues in test/components/structures Signed-off-by: Kerry Archibald <kerrya@element.io> * fix ts issues in test/components/views/context_menus Signed-off-by: Kerry Archibald <kerrya@element.io>
37 lines
906 B
JSON
37 lines
906 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"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/test-utils/**/*.ts",
|
|
"./test/test-utils/**/*.tsx",
|
|
"./test/utils/**/*.ts",
|
|
"./test/utils/**/*.tsx",
|
|
"./test/stores/**/*.ts",
|
|
"./test/stores/**/*.tsx",
|
|
"./test/components/structures/**/*.ts",
|
|
"./test/components/structures/**/*.tsx",
|
|
"./test/components/views/context_menus/**/*.ts",
|
|
"./test/components/views/context_menus/**/*.tsx",
|
|
],
|
|
}
|