tsconfig.build.server.json 762 B

123456789101112131415161718192021222324252627282930313233343536
  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. }
  18. },
  19. "exclude": [
  20. "config/ci",
  21. "config/*.js",
  22. "config/*.spec.ts",
  23. "resource",
  24. "src/client",
  25. "src/components",
  26. "src/components-universal",
  27. "src/linter-checker",
  28. "src/stores",
  29. "src/stores-universal",
  30. "src/styles",
  31. "src/**/*.jsx",
  32. "src/**/*.tsx",
  33. "src/**/*.spec.ts",
  34. "src/**/*.integ.ts"
  35. ]
  36. }