mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
2ab8b46ba3
* move js utils into directory Signed-off-by: Kerry Archibald <kerrya@element.io> * typescripterize js test-utils Signed-off-by: Kerry Archibald <kerrya@element.io> * move test utils to directory Signed-off-by: Kerry Archibald <kerrya@element.io> * move remaining mock functions to directory Signed-off-by: Kerry Archibald <kerrya@element.io> * update imports Signed-off-by: Kerry Archibald <kerrya@element.io> * missed copyright Signed-off-by: Kerry Archibald <kerrya@element.io> * type wait for update Signed-off-by: Kerry Archibald <kerrya@element.io> * add tests/test-utils to tsconfig * lint Signed-off-by: Kerry Archibald <kerrya@element.io> * fix wrapper type Signed-off-by: Kerry Archibald <kerrya@element.io>
29 lines
594 B
JSON
29 lines
594 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",
|
|
],
|
|
}
|