aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-06-23 21:44:01 -0400
committerbobzel <zzzman@gmail.com>2023-06-23 21:44:01 -0400
commit85c017527f209c9d007d67ac70958843ab45e729 (patch)
treee2649860002e0c60e98d84439a67235002ddd9a4 /tsconfig.json
parente9d5dbeef2bf1dab9dfb863d970b70b3074e3d0a (diff)
parent1429ab79eac9aa316082f52c14c576f6b3a97111 (diff)
Merge branch 'master' into heartbeat
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json25
1 files changed, 7 insertions, 18 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 993ab13b9..f1b275954 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,34 +2,23 @@
"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"],
+ "resolveJsonModule": true
},
// "exclude": [
// "node_modules",
// "static"
// ],
- "typeRoots": [
- "./node_modules/@types",
- "./src/typings"
- ]
-} \ No newline at end of file
+ "typeRoots": ["./node_modules/@types", "./src/typings"]
+}