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 /test | |
| parent | a0a6291db8e2be29c4ed13645c250201b4552b9d (diff) | |
Fix rollup type issue
Diffstat (limited to 'test')
| -rw-r--r-- | test/jsconfig.json | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/test/jsconfig.json b/test/jsconfig.json index 7dbf3950..c587abe6 100644 --- a/test/jsconfig.json +++ b/test/jsconfig.json @@ -3,7 +3,7 @@          "module": "ES2022",          "target": "ES2022",          "checkJs": true, -        "moduleResolution": "bundler", +        "moduleResolution": "node",          "strict": true,          "strictNullChecks": true,          "noImplicitAny": true, @@ -14,7 +14,8 @@          "paths": {              "*": ["../types/ext/*"],              "dev/*": ["../types/dev/*"], -            "test/*": ["../types/test/*"] +            "test/*": ["../types/test/*"], +            "rollup/parseAst": ["../types/other/rollup-parse-ast"]          },          "types": [              "chrome", |