Permalink
Please
sign in to comment.
Browse files
chore: fix ts config to not complain about extraneous files (#16790)
- Loading branch information...
Showing
with
16 additions
and 23 deletions.
- +8 −11 tsconfig.default_app.json
- +8 −12 tsconfig.electron.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" | |||
| ] | |||
| } | |||
| @@ -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