tsconfig.build.json 350 B

12345678910111213141516171819
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "rootDir": "./src",
  5. "noResolve": false,
  6. "preserveConstEnums": true,
  7. "sourceMap": false,
  8. "noEmit": false,
  9. "emitDeclarationOnly": true,
  10. "declaration": true,
  11. "declarationMap": true,
  12. "declarationDir": "./types",
  13. "baseUrl": ".",
  14. "paths": {
  15. }
  16. }
  17. }