Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
51b1979b8a chore(deps): update dependency eslint to v9 2024-05-09 09:45:53 +00:00
3 changed files with 370 additions and 346 deletions

703
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -31,7 +31,7 @@
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^7.0.0"
"@octokit/action": "^6.0.7"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
@@ -39,13 +39,13 @@
"@types/node": "^20.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.1.0",
"eslint": "^9.0.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.0.0",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"prettier": "3.3.0",
"semantic-release": "^24.0.0",
"prettier": "3.2.5",
"semantic-release": "^23.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},

View File

@@ -2,13 +2,12 @@
"compilerOptions": {
"lib": ["DOM", "ES2021"],
"target": "ES2021", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "es2015", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"moduleResolution": "Bundler", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
},
"exclude": ["node_modules", "**/*.test.ts"]
}