Skip to content

Commit

Permalink
build: drop Node.js 6 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop Node.js 6 support
  • Loading branch information
mooyoul committed Oct 2, 2019
1 parent a8d61b8 commit 4509ca4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "es2017",
"rootDir": "src",
"outDir": "lib",
"noImplicitAny": true,
"declaration": true,
"sourceMap": true,
"outDir": "lib",
"strictNullChecks": true
},
"include": [
"src"
"src/**/*.ts"
]
}
9 changes: 5 additions & 4 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "es2017",
"rootDir": "src",
"outDir": ".build",
"noImplicitAny": true,
"sourceMap": true,
"declaration": true,
"outDir": ".build",
"sourceMap": true,
"strictNullChecks": true
},
"include": [
"src"
"src/**/*.ts"
]
}

0 comments on commit 4509ca4

Please sign in to comment.