Browse Source

Fix support for Node.js 4 (#17)

iss58
Sam Verschueren 7 years ago
committed by Sindre Sorhus
parent
commit
90788e2ded
  1. 7
      tsconfig.json

7
tsconfig.json

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2016",
"target": "es5",
"module": "commonjs",
"declaration": false,
"removeComments": false,
@ -12,7 +12,10 @@
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"outDir": "dist"
"outDir": "dist",
"lib": [
"es2015"
]
},
"exclude": [
"node_modules",

Loading…
Cancel
Save