tsconfig.json 903 B

123456789101112131415161718192021222324252627282930313233
  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. "emitDecoratorMetadata": true,
  21. "lib": ["dom", "esnext"],
  22. "noImplicitAny": false,
  23. "skipLibCheck": true,
  24. "types": ["vite/client"],
  25. "removeComments": true,
  26. "paths": {
  27. "@/*": ["src/*"],
  28. "#/*": ["types/*"]
  29. }
  30. },
  31. "include": ["src", "types", "build", "mock", "vite.config.ts"],
  32. "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
  33. }