Files
gemini-cli/tsconfig.json
T

21 lines
494 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,
"incremental": true,
"declaration": true,
2025-04-20 12:33:39 -07:00
"allowSyntheticDefaultImports": true,
"lib": ["ES2023"],
"module": "NodeNext",
"moduleResolution": "nodenext",
"target": "es2022",
"types": ["node", "vitest/globals"],
"jsx": "react-jsx"
2025-04-15 21:41:08 -07:00
}
}