diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 21:52:53 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 21:52:53 -0500 |
commit | bfcc9d3fba4a3ff85be167eb771a4c0f26f9cc49 (patch) | |
tree | 224dd1eb3c4fb6b5c46f51be7fe4fb12cc38d8fd /dev | |
parent | a0a6291db8e2be29c4ed13645c250201b4552b9d (diff) |
Fix rollup type issue
Diffstat (limited to 'dev')
-rw-r--r-- | dev/jsconfig.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev/jsconfig.json b/dev/jsconfig.json index e0074980..a52153a8 100644 --- a/dev/jsconfig.json +++ b/dev/jsconfig.json @@ -3,7 +3,7 @@ "module": "ES2022", "target": "ES2022", "checkJs": true, - "moduleResolution": "bundler", + "moduleResolution": "node", "strict": true, "strictNullChecks": true, "noImplicitAny": true, @@ -36,7 +36,8 @@ "translator": ["../types/ext/translator"], "translation": ["../types/ext/translation"], "translation-internal": ["../types/ext/translation-internal"], - "dev/*": ["../types/dev/*"] + "dev/*": ["../types/dev/*"], + "rollup/parseAst": ["../types/other/rollup-parse-ast"] }, "types": [ "node", |