mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
026ca1ab64
* fix ts issues in SendMessageComposer-test Signed-off-by: Kerry Archibald <kerrya@element.io> * remove empty file Signed-off-by: Kerry Archibald <kerrya@element.io> * fix tsc issues in MessageComposerbUttons-test Signed-off-by: Kerry Archibald <kerrya@element.io> * fix the rest Signed-off-by: Kerry Archibald <kerrya@element.io> * bad autoformatter Signed-off-by: Kerry Archibald <kerrya@element.io> * tsc fixes for test/components/views/right_panel Signed-off-by: Kerry Archibald <kerrya@element.io>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
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",
|
|
"./test/components/views/rooms/**/*.tsx",
|
|
"./test/components/views/rooms/**/*.ts",
|
|
"./test/components/views/right_panel/**/*.tsx",
|
|
"./test/components/views/right_panel/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"./test/end-to-end-tests/"
|
|
]
|
|
}
|