Skip to content

Commit

Permalink
test(definitions): try to fix Unknown variable dynamic import on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Pakisan committed Jun 15, 2024
1 parent 1817796 commit 46efe45
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
12 changes: 6 additions & 6 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"paths": {
"@extensions": ["./extensions/*"],
"@examples": ["./examples/*"],
"@definitions": ["./definitions/*"],
"@bindings": ["./bindings/*"],
"@common": ["./common/*"],
"@test": ["./test/*"]
"@extensions/*": ["./extensions/*"],
"@examples/*": ["./examples/*"],
"@definitions/*": ["./definitions/*"],
"@bindings/*": ["./bindings/*"],
"@common/*": ["./common/*"],
"@test/*": ["./test/*"]
}
}
}
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"paths": {
"@extensions": ["./extensions/*"],
"@examples": ["./examples/*"],
"@definitions": ["./definitions/*"],
"@bindings": ["./bindings/*"],
"@common": ["./common/*"],
"@test": ["./test/*"]
"@extensions/*": ["./extensions/*"],
"@examples/*": ["./examples/*"],
"@definitions/*": ["./definitions/*"],
"@bindings/*": ["./bindings/*"],
"@common/*": ["./common/*"],
"@test/*": ["./test/*"]
}
}
}
1 change: 0 additions & 1 deletion vite.config.ts → vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export default defineConfig({
],
reporters: ['verbose'] // https://vitest.dev/guide/reporters#custom-reporters
},
root: "./",
resolve: {
alias: {
// @ts-ignore
Expand Down

0 comments on commit 46efe45

Please sign in to comment.