diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 12d494c..4478def 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "esModuleInterop": true, "target": "ESNext", "module": "commonjs", + "moduleResolution": "node", "strict": true, "lib": [ "ESNext" @@ -16,7 +17,8 @@ "strictBindCallApply": true /* Enable strict 'bind', 'call', and 'apply' methods on functions. */, "strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. "noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */, - "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */ + "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */, + "downlevelIteration": true /* END MINE */ }, // "include": [ |
