| 12345678910111213141516171819202122232425262728 |
- {
- "extends": "@vue/tsconfig/tsconfig.dom.json",
- "compilerOptions": {
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
- "types": [
- "vite/client"
- ],
- "allowArbitraryExtensions": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- /* Linting */
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true,
- "composite": true,
- "baseUrl": ".",
- "paths": {
- "@/*": [
- "./src/*"
- ]
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue"
- ]
- }
|