{ "compilerOptions": { // Target ES2020 for modern browser support "target": "ES2020", "useDefineForClassFields": true, "module": "ESNext", "lib": ["ES2020", "DOM", "DOM.Iterable"], "skipLibCheck": true, // Enable experimental decorators for Vue-facing-decorator "experimentalDecorators": true, "emitDecoratorMetadata": true, /* Bundler mode for Vite */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "preserve", /* Linting and type checking */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, /* Additional type checking */ "noImplicitReturns": true, "noImplicitOverride": true, "exactOptionalPropertyTypes": true, /* Module resolution */ "baseUrl": ".", "paths": { "@/*": ["src/*"], "@/components/*": ["src/components/*"], "@/systems/*": ["src/systems/*"], "@/types/*": ["src/types/*"] } }, "include": [ "src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/types/endorser.d.ts", "components/**/*.ts" ], "references": [{ "path": "./tsconfig.node.json" }] }