summaryrefslogtreecommitdiff
path: root/packages/cli/tsconfig.json
blob: 7c7539e38f062371450192ad91ff9357bb54d9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "extends": "../../tsconfig.json",
  "compilerOptions": {
    "outDir": "dist",
    "jsx": "react-jsx",
    "lib": ["DOM", "DOM.Iterable", "ES2020"],
    "paths": {
      "@gemini-code/*": ["./packages/*"]
    },
    "types": ["node", "vitest/globals"]
  },
  "include": ["index.ts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.json"],
  "exclude": ["node_modules", "dist"],
  "references": [{ "path": "../server" }]
}