first commit

This commit is contained in:
effendy-dev
2025-01-21 08:18:07 +07:00
commit 5ac477a3c0
648 changed files with 74333 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
{
"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"
]
}