tsconfig.json 486 B

123456789101112131415161718192021222324252627
  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. "baseUrl": ".",
  9. "paths": {
  10. "~/*": ["./src/*"],
  11. "^/*": ["./*"],
  12. "debug": ["./src/server/utils/logger/alias-for-debug"]
  13. }
  14. },
  15. "include": [
  16. "next-env.d.ts",
  17. "config",
  18. "src"
  19. ],
  20. "ts-node": {
  21. "transpileOnly": true,
  22. "swc": true
  23. }
  24. }