tsconfig.json 615 B

123456789101112131415161718192021222324252627282930313233
  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. /* TOOD: remove below flags for strict checking */
  18. "noImplicitAny": false
  19. },
  20. "include": [
  21. "next-env.d.ts",
  22. "config",
  23. "src"
  24. ],
  25. "ts-node": {
  26. "transpileOnly": true,
  27. "swc": true
  28. }
  29. }