mirror of
https://github.com/sabjorn7/meetguru.git
synced 2025-10-02 04:26:57 +03:00
25 lines
716 B
JSON
25 lines
716 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
// Based on https://github.com/vitejs/vite/blob/main/packages/create-vite/template-vue-ts/tsconfig.json
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.js", "src/**/*.jsx"]
|
|
} |