chore: fix ts config to not complain about extraneous files (#16790)

This commit is contained in:
Jeremy Apthorp 2019-02-06 15:46:10 -08:00 committed by GitHub
parent 2d1438456b
commit 6d68026c6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 23 deletions

View file

@ -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"
]
}

View file

@ -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"
]
}