Skip to content

Commit

Permalink
fix(ts): Compile for node 12+
Browse files Browse the repository at this point in the history
  • Loading branch information
WoH committed Mar 26, 2022
1 parent 13472bc commit e53e6b4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions packages/cli/tsconfig.json
Expand Up @@ -6,8 +6,8 @@
"composite": true,
"noImplicitAny": false,
"module": "commonjs",
"target": "es5",
"lib": ["es6", "es2017.object", "dom"],
"target": "ES2019",
"lib": ["ES2019"],
"typeRoots": ["node_modules/@types", "./typings"],
"downlevelIteration": true,
"experimentalDecorators": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/tsconfig.json
Expand Up @@ -7,8 +7,8 @@
"module": "commonjs",
"types": ["node"],
"composite": true,
"target": "es5",
"lib": ["es6", "es2017.object", "dom"],
"target": "ES2019",
"lib": ["ES2019"],
"typeRoots": ["node_modules/@types", "./typings"],
"downlevelIteration": true,
"experimentalDecorators": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/tsoa/tsconfig.json
Expand Up @@ -6,8 +6,8 @@
"noImplicitAny": false,
"module": "commonjs",
"composite": true,
"target": "es5",
"lib": ["es6", "es2017.object", "dom"],
"target": "ES2019",
"lib": ["ES2019"],
"typeRoots": ["node_modules/@types", "./typings"],
"downlevelIteration": true,
"experimentalDecorators": true,
Expand Down
4 changes: 2 additions & 2 deletions tests/tsconfig.json
Expand Up @@ -3,8 +3,8 @@
"rootDir": ".",
"baseUrl": ".",
"module": "commonjs",
"target": "es6",
"lib": ["es2020"],
"target": "ES2019",
"lib": ["ES2019"],
"typeRoots": ["node_modules/@types", "./typings"],
"downlevelIteration": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit e53e6b4

Please sign in to comment.