tsconfig.json 399 B

123456789101112131415
  1. {
  2. "extends": "../../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "stripInternal": true,
  5. "removeComments": false,
  6. "emitDeclarationOnly": true,
  7. "outDir": "../../dist/client/",
  8. "rootDir": "./",
  9. "tsBuildInfoFile": "../../dist/tsconfig.client.types.tsbuildinfo"
  10. },
  11. "references": [
  12. { "path": "../../../../client/tsconfig.types.json" }
  13. ],
  14. "files": ["index.ts"]
  15. }