tsconfig.build.json 346 B

1234567891011121314
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./dist",
  5. "rootDir": "./src",
  6. "esModuleInterop": true,
  7. "declaration": true,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "jsx": "react",
  11. "lib": ["dom"]
  12. },
  13. "files": ["./src/index.ts"]
  14. }