Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Commit

Permalink
fix: for production code
Browse files Browse the repository at this point in the history
  • Loading branch information
taro-shono committed Jul 17, 2018
1 parent 8f25380 commit b7d43a7
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
{
"compilerOptions": {
"declaration": true,
"target": "es2017",
"module": "es2015",
"module": "commonjs",
"outDir": "lib",
"sourceMap": true
"sourceMap": true,
"lib": [
"dom",
"es2015",
"es2016"
],
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
"node_modules",
"**/__tests__",
"**/*.test.ts",
"lib"
]
}

0 comments on commit b7d43a7

Please sign in to comment.