Skip to content

Commit

Permalink
update typescript version to esnext
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikHorn committed Feb 21, 2020
1 parent 1cb4e2d commit e5b1fe3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"preserveConstEnums": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es5",
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
Expand All @@ -26,9 +26,16 @@
"composite": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"lib": ["es2018", "dom"],
"lib": [
"esnext",
"dom"
],
"resolveJsonModule": true,
"esModuleInterop": true
},
"exclude": ["./node_modules", "./packages/*/node_modules", "./packages/*/dist"]
}
"exclude": [
"./node_modules",
"./packages/*/node_modules",
"./packages/*/dist"
]
}

0 comments on commit e5b1fe3

Please sign in to comment.