Skip to content

Commit

Permalink
chore: fix ts config to not complain about extraneous files (#16790)
Browse files Browse the repository at this point in the history
  • Loading branch information
nornagon committed Feb 6, 2019
1 parent 2d14384 commit 6d68026
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
19 changes: 8 additions & 11 deletions tsconfig.default_app.json
@@ -1,13 +1,10 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": "default_app", "rootDir": "default_app"
}, },
"exclude": [ "include": [
"script", "default_app",
"spec", "typings"
"tools", ]
"lib",
"npm"
]
} }
20 changes: 8 additions & 12 deletions tsconfig.electron.json
@@ -1,14 +1,10 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": "lib", "rootDir": "lib"
}, },
"exclude": [ "include": [
"script", "lib",
"spec", "typings"
"tools", ]
"default_app",
"npm",
"electron.d.ts"
]
} }

0 comments on commit 6d68026

Please sign in to comment.