tsconfig.build.server.json 716 B

12345678910111213141516171819202122232425262728293031323334
  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",
  21. "resource",
  22. "src/client",
  23. "src/components",
  24. "src/components-universal",
  25. "src/linter-checker",
  26. "src/stores",
  27. "src/stores-universal",
  28. "src/styles",
  29. "src/**/*.jsx",
  30. "src/**/*.tsx",
  31. "src/**/*.spec.ts",
  32. "src/**/*.integ.ts"
  33. ]
  34. }