tsconfig.types.json 316 B

12345678910111213141516
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "../packages/types/dist/server",
  5. "stripInternal": true,
  6. "removeComments": false,
  7. "emitDeclarationOnly": true
  8. },
  9. "references": [
  10. { "path": "../shared/tsconfig.types.json" }
  11. ],
  12. "exclude": [
  13. "tools/",
  14. "tests/"
  15. ]
  16. }