mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 04:19:34 +00:00
chore(ci): fix deno type conflict
This commit is contained in:
parent
df8bf029a6
commit
08253f9d87
2 changed files with 13 additions and 6 deletions
|
@ -97,5 +97,10 @@
|
|||
/* Completeness */
|
||||
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"deno"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
/// <reference types="vitest" />
|
||||
import { configDefaults, defineConfig } from 'vitest/config'
|
||||
import wasm from "vite-plugin-wasm";
|
||||
import { defineConfig } from "vite";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [wasm()],
|
||||
// test: {
|
||||
// reporters:['hanging-process']
|
||||
// },
|
||||
test: {
|
||||
exclude: [
|
||||
...configDefaults.exclude,
|
||||
"deno/*"
|
||||
]
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue