aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-21 14:55:48 -0500
committerbobzel <zzzman@gmail.com>2023-12-21 14:55:48 -0500
commit1caba64ee0f32ee8af79263cd4ef2a8bc5d5146e (patch)
tree0fa0e957d1f342fdc6ed4a4b43f5dddfddb1298a /tsconfig.json
parent02eb7da95df283606d4275a22d9451cef371c3b5 (diff)
parent2691b951d96f2ce7652acbea9e340b61737b3b57 (diff)
Merge branch 'moreUpgrading' into dataViz-annotations
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json11
1 files changed, 6 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index f1b275954..680927421 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,20 +1,21 @@
{
"compilerOptions": {
- "target": "es5",
+ "target": "ES2017",
"downlevelIteration": true,
"removeComments": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"moduleDetection": "auto",
+ "useDefineForClassFields": false, // allowing this to be true breaks overriding of observable props in subclasses (see CollectionSubView)
"strict": true,
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"outDir": "dist",
- "lib": ["dom", "es2015"],
- "typeRoots": ["node_modules/@types", "./src/typings"],
- "types": ["youtube", "node"],
- "resolveJsonModule": true
+ "lib": ["dom", "es2017"],
+ "typeRoots": ["node_modules/@types", "./src/typings", "./src/extensions/General"],
+ "resolveJsonModule": true,
+ "moduleResolution": "node"
},
// "exclude": [
// "node_modules",