20 lines
398 B
JSON
20 lines
398 B
JSON
{
|
|
"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" },
|
|
]
|
|
}
|