Skip to content

Commit

Permalink
chore: update tsconfig settings
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjeffos committed Aug 9, 2021
1 parent 755f586 commit 7fbe32c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tsconfig.settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"outDir": "./dist",
"rootDir": ".",
"pretty": true,
"target": "es2017",
"lib": ["es2017", "dom"],
"moduleResolution": "node",
"target": "es2018",
"lib": ["ES2018", "dom"],
"module": "commonjs",
"allowJs": true,
"sourceMap": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitAny": false, // Needed to compile tap and ansi-escapes
"composite": true
Expand Down

0 comments on commit 7fbe32c

Please sign in to comment.