tsconfig.json 540 B

12345678910111213141516171819202122232425262728293031
  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. ""
  16. "debug": ["./src/server/utils/logger/alias-for-debug"]
  17. }
  18. },
  19. "include": [
  20. "next-env.d.ts",
  21. "config",
  22. "src"
  23. ],
  24. "ts-node": {
  25. "transpileOnly": true,
  26. "swc": true
  27. }
  28. }