Files
prime-dash-template/tsconfig.json
effendy-dev 5ac477a3c0 first commit
2025-01-21 08:18:07 +07:00

55 lines
1.0 KiB
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"moduleResolution": "Bundler",
"isolatedModules": true,
"strict": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"@/*": [
"./src/*"
],
"@appConfig": [
"./appConfig.ts"
],
"@axios": [
"./src/plugins/axios.ts"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"skipLibCheck": true,
"types": [
"vite/client"
]
},
"include": [
"./typed-router.d.ts",
"./vite.config.*",
"./env.d.ts",
"./shims.d.ts",
"./src/**/*",
"./src/**/*.vue",
"./appConfig.ts",
"./auto-imports.d.ts",
"./components.d.ts"
],
"exclude": [
"./dist",
"./node_modules"
]
}