1
0

tsconfig.json 742 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["dom", "dom.iterable", "esnext", "webworker"],
  5. "types": ["vite/client", "vitest/globals", "@modyfi/vite-plugin-yaml/modules"],
  6. "allowJs": false,
  7. "skipLibCheck": true,
  8. "esModuleInterop": false,
  9. "allowSyntheticDefaultImports": true,
  10. "strict": true,
  11. "useUnknownInCatchVariables": false,
  12. "forceConsistentCasingInFileNames": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "module": "esnext",
  15. "moduleResolution": "node",
  16. "resolveJsonModule": true,
  17. "isolatedModules": true,
  18. "noEmit": true,
  19. "jsx": "react-jsx",
  20. "baseUrl": ".",
  21. "paths": {
  22. "@/*": ["src/*"]
  23. },
  24. },
  25. "include": ["src", "plugins", "vitest-setup.ts"]
  26. }