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