2023-03-25 14:16:10 +08:00
|
|
|
{
|
2023-03-25 16:22:01 +08:00
|
|
|
"extends": "../tsconfig.json",
|
2023-03-25 14:16:10 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
2023-04-12 17:36:05 +08:00
|
|
|
"allowJs": true,
|
2023-03-25 14:16:10 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
2023-04-14 16:38:25 +08:00
|
|
|
"isolatedModules": true,
|
2023-04-14 18:16:39 +08:00
|
|
|
"forceConsistentCasingInFileNames": true
|
2023-03-25 14:16:10 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./.vitepress/**/*.ts",
|
|
|
|
"./.vitepress/**/*.vue",
|
2023-04-14 16:38:25 +08:00
|
|
|
"./global.d.ts",
|
2023-03-25 16:22:01 +08:00
|
|
|
"../global.d.ts"
|
2023-03-25 14:16:10 +08:00
|
|
|
],
|
2023-04-14 16:38:25 +08:00
|
|
|
"exclude": ["node_modules"]
|
2023-03-25 14:16:10 +08:00
|
|
|
}
|