admin/tsconfig.json

34 lines
520 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": [
"ESNext",
"DOM"
],
"jsx": "preserve",
"strict": true,
"skipLibCheck": true,
"types": [
"node",
"vite/client"
],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"ignoreDeprecations": "6.0"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
]
}