mirror of
https://github.com/fmhy/edit.git
synced 2025-07-28 23:02:16 +10:00
25 lines
606 B
JSON
25 lines
606 B
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["vitepress"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"**/.vitepress/**/*.ts",
|
|
"**/.vitepress/**/*.mts",
|
|
"**/.vitepress/**/*.vue",
|
|
"./.cache/imports.d.ts"
|
|
]
|
|
}
|