gemini-cli/tsconfig.json

18 lines
382 B
JSON

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
"composite": true,
// MONOREPO STUFF
"incremental": true,
"target": "ES2020",
"module": "Node16",
"declaration": true,
"moduleResolution": "node16"
}
}