You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vitepress/__tests__/unit/tsconfig.json

19 lines
420 B

{
"extends": "../tsconfig.json",
"compilerOptions": {
"types": [
"node",
"vitest/globals",
"vite/client",
"../../src/client/shims.d.ts"
],
"paths": {
"client/*": ["../../src/client/*"],
"node/*": ["../../src/node/*"],
"shared/*": ["../../src/shared/*"],
"vitepress": ["../../src/client/index.ts"],
"vitepress/theme": ["../../theme.d.ts"]
}
}
}