Skip to content

Commit

Permalink
Merge 142c2ae into 45a9a8b
Browse files Browse the repository at this point in the history
  • Loading branch information
bkendall committed Oct 11, 2019
2 parents 45a9a8b + 142c2ae commit 8283a36
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -56,7 +56,7 @@ module.exports = {
"globals": {},
"parserOptions": {
"ecmaVersion": "2017",
"project": ["tsconfig.json"],
"project": ["tsconfig.json", "tsconfig.dev.json"],
"sourceType": "module",
},
"plugins": [
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -14,3 +14,4 @@ yarn.lock
scripts/*.json

lib/
dev/
17 changes: 17 additions & 0 deletions tsconfig.dev.json
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"module": "commonjs",
"strict": true,
"outDir": "dev",
"removeComments": false,
"target": "es2015",
"sourceMap": true,
"typeRoots": [
"node_modules/@types",
"src/types"
]
},
"include": ["scripts/**/*"]
}
5 changes: 1 addition & 4 deletions tsconfig.json
Expand Up @@ -13,8 +13,5 @@
"src/types"
]
},
"include": [
"src/**/*",
"scripts/**/*"
]
"include": ["src/**/*"]
}

0 comments on commit 8283a36

Please sign in to comment.