mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
40 lines
855 B
JSON
40 lines
855 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"jsx": "preserve",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"~/*": ["./.vitepress/theme/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["node", "vitepress/client"],
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
".vitepress/**/*",
|
|
"**/*.vue",
|
|
"**/*.ts",
|
|
"**/*.mts",
|
|
"**/*.tsx",
|
|
"**/*.md",
|
|
"env.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".vitepress/dist",
|
|
".vitepress/cache"
|
|
]
|
|
}
|