tsconfig.build.json 332 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "module": "CommonJS",
  5. "rootDir": "./src",
  6. "outDir": "dist",
  7. "declaration": true,
  8. "noResolve": false,
  9. "preserveConstEnums": true,
  10. "sourceMap": false,
  11. "noEmit": false,
  12. "baseUrl": "./src",
  13. "paths": {
  14. "~/*": ["./*"]
  15. }
  16. }
  17. }