tsconfig.json 870 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "noLib": false,
  8. "forceConsistentCasingInFileNames": true,
  9. "allowSyntheticDefaultImports": true,
  10. "strictFunctionTypes": false,
  11. "jsx": "preserve",
  12. "baseUrl": ".",
  13. "allowJs": true,
  14. "sourceMap": true,
  15. "esModuleInterop": true,
  16. "resolveJsonModule": true,
  17. "noUnusedLocals": true,
  18. "noUnusedParameters": true,
  19. "experimentalDecorators": true,
  20. "lib": ["dom", "esnext"],
  21. "noImplicitAny": false,
  22. "skipLibCheck": true,
  23. "types": ["vite/client"],
  24. "removeComments": true,
  25. "paths": {
  26. "/@/*": ["src/*"],
  27. "/#/*": ["types/*"]
  28. }
  29. },
  30. "include": ["src", "types", "build", "mock", "vite.config.ts"],
  31. "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
  32. }