tsconfig.build.json 252 B

12345678910
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "removeComments": false,
  5. "outDir": "../dist",
  6. "rootDirs": ["../src"]
  7. },
  8. "exclude": ["../package.json"],
  9. "files": ["../src/index.ts", "../typings.d.ts"]
  10. }