tsconfig.json 530 B

1234567891011121314151617181920212223242526272829
  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. },
  18. "include": [
  19. "next-env.d.ts",
  20. "config",
  21. "src"
  22. ],
  23. "ts-node": {
  24. "transpileOnly": true,
  25. "swc": true
  26. }
  27. }