2
0

tsconfig.build.client.json 489 B

1234567891011121314151617181920212223
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "include": [
  5. ".next/types/**/*.ts"
  6. ],
  7. "compilerOptions": {
  8. "module": "ESNext",
  9. "strict": false,
  10. "strictNullChecks": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "incremental": true,
  13. "baseUrl": ".",
  14. "paths": {
  15. "~/*": ["./src/*"],
  16. "^/*": ["./*"],
  17. "debug": ["./src/server/utils/logger/alias-for-debug"]
  18. },
  19. "plugins": [{"name": "next"}]
  20. }
  21. }