chore(ci): fix deno type conflict

This commit is contained in:
Zixuan Chen 2024-04-12 18:21:49 +08:00
parent df8bf029a6
commit 08253f9d87
No known key found for this signature in database
2 changed files with 13 additions and 6 deletions

View file

@ -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"
]
}

View file

@ -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/*"
]
},
});