Files
gemini-cli/tsconfig.json
T

18 lines
382 B
JSON
Raw Normal View History

2025-04-15 21:41:08 -07:00
{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
2025-04-18 14:37:02 -07:00
"sourceMap": true,
"composite": true,
// MONOREPO STUFF
"incremental": true,
"target": "ES2020",
"module": "Node16",
"declaration": true,
2025-04-18 18:08:43 -04:00
"moduleResolution": "node16"
2025-04-15 21:41:08 -07:00
}
}