33 lines
666 B
JSON
33 lines
666 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "es2017",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"noEmit": true,
|
|
"declaration": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": false,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"vite/client",
|
|
"@types/node"
|
|
],
|
|
},
|
|
"include": ["./.vitepress", "."],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|