mirror of https://github.com/vuejs/vitepress
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.
22 lines
478 B
22 lines
478 B
{
|
|
"include": ["."],
|
|
"exclude": ["**/dist/**"],
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"jsx": "preserve",
|
|
"types": ["vitepress/client", "vitest/globals", "node"],
|
|
"paths": {
|
|
"~utils": ["./test-utils.ts"]
|
|
}
|
|
}
|
|
}
|