1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["dom", "dom.iterable", "esnext", "webworker"],
- "types": ["vite/client", "vitest/globals", "@modyfi/vite-plugin-yaml/modules"],
- "allowJs": false,
- "skipLibCheck": true,
- "esModuleInterop": false,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "useUnknownInCatchVariables": false,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- "baseUrl": ".",
- "paths": {
- "@/*": ["src/*"]
- },
- },
- "include": ["src", "plugins", "vitest-setup.ts"]
- }
|