Skip to content

Commit

Permalink
Merge pull request #22 from dolittle/update
Browse files Browse the repository at this point in the history
Make tsconfig more modern
  • Loading branch information
woksin authored Jul 12, 2020
2 parents c74da1d + cfdf9c9 commit 44ca991
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Source/Config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"pretty": true,
"lib": ["es2017", "dom"],
"target": "es5",
"module": "ESNext",
"lib": ["ES6"],
"target": "ES6",
"module": "ES6",
"moduleResolution": "node",

"esModuleInterop": true,
Expand All @@ -13,6 +13,8 @@
"declarationMap": true,
"sourceMap": true,
"composite": true,
"incremental": true,
"watch": true,
"noEmitOnError": true,

"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit 44ca991

Please sign in to comment.