tsconfig.build.server.json 771 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "moduleResolution": "Node",
  7. "outDir": "transpiled",
  8. "declaration": true,
  9. "noResolve": false,
  10. "preserveConstEnums": true,
  11. "sourceMap": false,
  12. "noEmit": false,
  13. "baseUrl": ".",
  14. "paths": {
  15. "~/*": ["./src/*"],
  16. "^/*": ["./*"],
  17. "debug": ["./src/utils/logger/alias-for-debug"]
  18. }
  19. },
  20. "exclude": [
  21. "config",
  22. "resource",
  23. "src/client",
  24. "src/components",
  25. "src/components-universal",
  26. "src/linter-checker",
  27. "src/stores",
  28. "src/stores-universal",
  29. "src/styles",
  30. "src/**/*.jsx",
  31. "src/**/*.tsx",
  32. "src/**/*.spec.ts",
  33. "src/**/*.integ.ts"
  34. ]
  35. }