mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-04-07 15:09:25 +00:00
* build(deps-dev): Bump typescript from 5.9.3 to 6.0.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * 🔧 Update config --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: marocchino <marocchino@users.noreply.github.com>
28 lines
749 B
JSON
28 lines
749 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"newLine": "lf",
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"outDir": "./dist",
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2022",
|
|
"types": ["node"]
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts", "dist"],
|
|
"include": ["src"]
|
|
}
|