12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "compilerOptions": {
- "baseUrl": "/website",
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "skipLibCheck": true,
- "jsx": "preserve",
- "sourceMap": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "noImplicitAny": false,
- "lib": [
- "esnext",
- "dom"
- ],
- "types": [
- "vite/client",
- "node"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ],
- "@common/*": [
- "src/common/*"
- ],
- "@components/*": [
- "src/components/*"
- ],
- "@business-components/*": [
- "src/business-components/*"
- ],
- "@store/*": [
- "src/store/*"
- ],
- "@views/*": [
- "src/views/*"
- ],
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "tests/**/*.ts",
- "tests/**/*.tsx",
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|