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/src/client/tsconfig.json

21 lines
483 B

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "../../dist/client",
"target": "esnext",
"module": "esnext",
"moduleResolution": "nodenext",
"declaration": true,
"declarationDir": "../../dist/client-types",
"jsx": "preserve",
"lib": ["ESNext", "DOM"],
"types": ["vite/client"],
"paths": {
"vitepress": ["index.ts"],
"vitepress/theme": ["../../theme.d.ts"]
}
},
"include": ["."]
}