Files
add-and-commit/tsconfig.json
dependabot[bot]Federico Grandidependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>Cursor
2b9ea5bc7f chore(deps-dev): bump typescript from 5.9.3 to v6 (#748)
* chore(deps-dev): use TypeScript 6 instead of 7

TypeScript 7 lacks the compiler API required by ts-jest and ncc. Update tsconfig for TS6 breaking changes.

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Federico Grandi <fgrandi30@gmail.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-08 18:55:57 +02:00

18 lines
356 B
JSON

{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "./lib",
"composite": false,
"declaration": false,
"module": "ES2022",
"moduleResolution": "bundler",
"esModuleInterop": true,
"types": ["node", "jest"]
},
"include": [
"src/**/*.ts",
"test/**/*.ts"
]
}