mirror of
https://github.com/electron/electron.git
synced 2026-01-05 05:34:14 -05:00
chore: fix ts config to not complain about extraneous files (#16790)
This commit is contained in:
@@ -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"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user