tsconfig.build.json 301 B

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