Skip to content

Commit

Permalink
enable es7 lib and update compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoschenkel committed Aug 1, 2018
1 parent 981ed5d commit b316dd0
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@
"compilerOptions": {
"outDir": "lib",
"target": "es5",
"lib": ["es6", "dom"],
"lib": ["es7", "dom"],
"types": ["reflect-metadata"],
"sourceMap": true,
"inlineSources": true,
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"removeComments": false,
"strict": false,
"noImplicitAny": true,
"noUnusedParameters": false,
"strictNullChecks": false,
"noImplicitThis": false,
"alwaysStrict": true,
"noUnusedLocals": true,
"removeComments": true,
"sourceMap": false
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"./src/**/*.ts"
Expand Down

0 comments on commit b316dd0

Please sign in to comment.