tsconfig.build.client.json 375 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "jsx": "react",
  6. "noFallthroughCasesInSwitch": true,
  7. "noUnusedLocals": true,
  8. "noUnusedParameters": true,
  9. "strict": true,
  10. "baseUrl": ".",
  11. "paths": {
  12. "~/*": ["./src/*"],
  13. "^/*": ["./*"],
  14. "debug": ["./src/utils/logger/alias-for-debug"]
  15. }
  16. }
  17. }