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