blob: 1571716d997e8fb213f29d0347ea82accaecd411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"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" },
]
}
|