Node.js 20 is being decommissioned 2026-10-30. This upgrades the runtime to Node.js 22 (LTS), bumps firebase-functions from v6 to v7, removes the deprecated functions.config() fallback, and aligns the TS target to ES2022. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
937 B
JSON
33 lines
937 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "src/types/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts", "src/test/**/*", "**/__tests__/**/*"]
|
|
} |