Files
gemini-cli/packages/core/tsconfig.json

16 lines
386 B
JSON
Raw Permalink Normal View History

2025-04-18 14:37:02 -07:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"composite": true,
"types": ["node", "vitest/globals"],
"baseUrl": ".",
"paths": {
"@google/gemini-cli-core": ["./index.ts"]
}
},
"include": ["index.ts", "src/**/*.ts", "src/**/*.json"],
"exclude": ["node_modules", "dist"]
2025-04-18 14:37:02 -07:00
}