File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 33 "version" : " 1.0.7" ,
44 "exports" : " ./src/index.ts" ,
55 "imports" : {
6- "@inquirer/prompts" : " npm:@inquirer/prompts@^7.5.0" ,
76 "@napi/shared" : " ../shared/src/index.ts" ,
7+ "@inquirer/prompts" : " npm:@inquirer/prompts@^7.5.0" ,
88 "@types/express" : " npm:@types/express@^5.0.1" ,
99 "@types/yargs" : " npm:@types/yargs@^17.0.33" ,
1010 "express" : " npm:express@^5.1.0" ,
Original file line number Diff line number Diff line change 1+ import { resolve } from "node:path" ;
2+ import { defineConfig } from "vitest/config" ;
3+
4+ export default defineConfig ( {
5+ resolve : {
6+ alias : {
7+ // TODO this is a workarround, should remove vitest and use Deno.test() instead
8+ "@napi/shared" : resolve ( "./packages/shared/src/index.ts" ) ,
9+ } ,
10+ } ,
11+ } ) ;
You can’t perform that action at this time.
0 commit comments