tsconfig.json 730 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "jsx": "preserve",
  7. "resolveJsonModule": true,
  8. "types": [
  9. "vitest/globals"
  10. ],
  11. "baseUrl": ".",
  12. "paths": {
  13. "~/*": ["./src/*"],
  14. "^/*": ["./*"],
  15. "debug": ["./src/server/utils/logger/alias-for-debug"]
  16. },
  17. /* TODO: remove below flags for strict checking */
  18. "strict": false,
  19. "strictNullChecks": true,
  20. "strictBindCallApply": true,
  21. "noImplicitAny": false,
  22. "noImplicitOverride": true
  23. },
  24. "include": [
  25. "next-env.d.ts",
  26. "config",
  27. "src"
  28. ],
  29. "ts-node": {
  30. "transpileOnly": true,
  31. "swc": true
  32. }
  33. }