Skip to content

Commit

Permalink
build: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rzuppur committed Feb 6, 2023
1 parent a14a943 commit ddd056a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/preload/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"strict": true,
"isolatedModules": true,
"types": ["node"],
"baseUrl": "."
"baseUrl": ".",
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.ts", "../../types/**/*.d.ts"],
"exclude": ["**/*.spec.ts"]
Expand Down
3 changes: 2 additions & 1 deletion packages/renderer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"paths": {
"#preload": ["../preload/src/index"]
},
"lib": ["ESNext", "dom", "dom.iterable"]
"lib": ["ESNext", "dom", "dom.iterable"],
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.vue", "src/**/*.ts", "src/**/*.tsx", "types/**/*.d.ts", "../../types/**/*.d.ts"],
"exclude": ["**/*.spec.ts"]
Expand Down

0 comments on commit ddd056a

Please sign in to comment.