aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-05-10 10:08:50 -0400
committerbobzel <zzzman@gmail.com>2023-05-10 10:08:50 -0400
commitebb846116af9c7e65a9d674c765c71c0bf0a7d29 (patch)
treed8278e7c27f7577eb5b4706604144940d12a718e /tsconfig.json
parentf912a233a89c8772b22b71d34830ff4b0ba82310 (diff)
parent719da9462f02fd3afda9b0b65de19de9405ab4fc (diff)
Merge branch 'master' into UI_Update_Eric_Ma
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 6 insertions, 18 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 993ab13b9..bff9255db 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,34 +2,22 @@
"compilerOptions": {
"target": "es5",
"downlevelIteration": true,
- // "module": "system",
"removeComments": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
+ "moduleDetection": "auto",
"strict": true,
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"outDir": "dist",
- "lib": [
- "dom",
- "es2015"
- ],
- "typeRoots": [
- "node_modules/@types",
- "./src/typings"
- ],
- "types": [
- "youtube",
- "node"
- ]
+ "lib": ["dom", "es2015"],
+ "typeRoots": ["node_modules/@types", "./src/typings"],
+ "types": ["youtube", "node"]
},
// "exclude": [
// "node_modules",
// "static"
// ],
- "typeRoots": [
- "./node_modules/@types",
- "./src/typings"
- ]
-} \ No newline at end of file
+ "typeRoots": ["./node_modules/@types", "./src/typings"]
+}