tsconfig.types.json 653 B

1234567891011121314151617181920212223
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "stripInternal": true,
  5. "removeComments": false,
  6. "emitDeclarationOnly": true,
  7. "sourceMap": false,
  8. "outDir": "./dist/",
  9. "baseUrl": "./",
  10. "rootDir": "./src",
  11. "tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
  12. "paths": {
  13. "@server/*": [ "../../server/core/*" ]
  14. }
  15. },
  16. "references": [
  17. { "path": "../models/tsconfig.types.json" },
  18. { "path": "../typescript-utils/tsconfig.types.json" },
  19. { "path": "../../server/tsconfig.types.json" },
  20. { "path": "./src/client/tsconfig.types.json" }
  21. ],
  22. "files": ["./src/index.ts"]
  23. }