Files
codexium-odoo/tsconfig.base.json

17 lines
363 B
JSON
Raw Permalink Normal View History

2026-03-16 14:38:00 -05:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "."
}
}