mirror of
https://github.com/EndBug/add-and-commit.git
synced 2026-08-27 06:45:21 -05:00
* 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>
18 lines
356 B
JSON
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"
|
|
]
|
|
}
|