Files
admin/dashboard/frontend/tsconfig.json
T

28 lines
898 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["DOM", "ESNext"],
"module": "ESNext",
"moduleResolution": "bundler",
"paths": {
"@/*": ["./src/*"],
2026-08-05 18:36:01 +08:00
"~/*": ["./*"],
// @wangeditor/editor-for-vue 的 exports 缺 types 条件,手动指向其类型声明
"@wangeditor/editor-for-vue": ["./node_modules/@wangeditor/editor-for-vue/dist/src/index.d.ts"]
},
"resolveJsonModule": true,
"types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar"],
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true
},
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
"exclude": ["node_modules", "dist"]
}