mirror of
https://github.com/acepanel/acepanel.github.io.git
synced 2026-02-04 06:47:16 +08:00
33 lines
727 B
JSON
33 lines
727 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmit": true,
|
|
"removeComments": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"**/.vitepress/**/*.ts",
|
|
"**/.vitepress/**/*.mts",
|
|
"**/.vitepress/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |