tsconfig.build.client.json 379 B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "compilerOptions": {
  5. "module": "ESNext",
  6. "strict": false,
  7. "noFallthroughCasesInSwitch": true,
  8. "incremental": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "~/*": ["./src/*"],
  12. "^/*": ["./*"],
  13. "debug": ["./src/server/utils/logger/alias-for-debug"]
  14. }
  15. }
  16. }