tsconfig.json 636 B

12345678910111213141516171819202122232425262728293031323334
  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. "noImplicitAny": false
  20. },
  21. "include": [
  22. "next-env.d.ts",
  23. "config",
  24. "src"
  25. ],
  26. "ts-node": {
  27. "transpileOnly": true,
  28. "swc": true
  29. }
  30. }