aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-10 20:19:27 -0500
committerbobzel <zzzman@gmail.com>2023-12-10 20:19:27 -0500
commit380ee1acac1c0b7972d7d423cf804af146dc0edf (patch)
tree1d77244a600e6eb1fb6d56356b3ce01ca6add89d /tsconfig.json
parentb7b7105fac83ec11480204c5c7ac0ae6579774e1 (diff)
massive changes to use mobx 6 which means not accessing props directly in @computed functions.
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 1e8934ee8..8014877f5 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,6 +6,7 @@
"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,
@@ -13,7 +14,6 @@
"outDir": "dist",
"lib": ["dom", "es2017"],
"typeRoots": ["node_modules/@types", "./src/typings"],
- "types": ["youtube", "node"],
"resolveJsonModule": true,
"moduleResolution": "node"
},