Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: fix ts config to not complain about extraneous files (#16790)
  • 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",
"compilerOptions": {
"rootDir": "default_app",
},
"exclude": [
"script",
"spec",
"tools",
"lib",
"npm"
]
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "default_app"
},
"include": [
"default_app",
"typings"
]
}
20 changes: 8 additions & 12 deletions tsconfig.electron.json
@@ -1,14 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "lib",
},
"exclude": [
"script",
"spec",
"tools",
"default_app",
"npm",
"electron.d.ts"
]
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "lib"
},
"include": [
"lib",
"typings"
]
}

0 comments on commit 6d68026

Please sign in to comment.