18 lines
389 B
JSON
18 lines
389 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" }]
|
|
}
|