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", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": "default_app", "rootDir": "default_app"
}, },
"exclude": [ "include": [
"script", "default_app",
"spec", "typings"
"tools",
"lib",
"npm"
] ]
} }

View file

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