Files
ThreadNet-Web/tsconfig.json
T

44 lines
1.1 KiB
JSON
Raw Normal View History

2019-12-12 14:35:28 -07:00
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2020-04-20 19:00:54 +01:00
"resolveJsonModule": true,
2020-04-21 10:01:05 +01:00
"esModuleInterop": true,
2019-12-12 14:35:28 -07:00
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"noImplicitAny": false,
2022-03-09 12:05:16 +00:00
"noUnusedLocals": true,
2019-12-12 14:35:28 -07:00
"sourceMap": false,
"outDir": "./lib",
"declaration": true,
2020-03-12 13:36:02 -06:00
"jsx": "react",
"lib": [
"es2020",
"dom",
"dom.iterable"
],
2019-12-12 14:35:28 -07:00
},
"include": [
2020-03-11 18:17:35 -06:00
"./src/**/*.ts",
"./src/**/*.tsx",
2022-03-09 14:23:58 +01:00
"./test/test-utils/**/*.ts",
"./test/test-utils/**/*.tsx",
2022-03-10 19:15:31 +01:00
"./test/utils/**/*.ts",
"./test/utils/**/*.tsx",
2022-03-11 17:03:33 +01:00
"./test/stores/**/*.ts",
"./test/stores/**/*.tsx",
2022-03-15 10:30:48 +01:00
"./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/"
]
2019-12-12 14:35:28 -07:00
}