chore: fix ts config to not complain about extraneous files (#16790)
This commit is contained in:
parent
2d1438456b
commit
6d68026c6c
2 changed files with 16 additions and 23 deletions
|
@ -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"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue