refactor(action): rebuild in TypeScript based on typescript-action template repo (#9)

This commit is contained in:
2025-10-27 21:31:03 +00:00
committed by GitHub
parent e58fa0f2f8
commit 733ded1f0b
71 changed files with 10646 additions and 6590 deletions

17
tsconfig.eslint.json Normal file
View File

@@ -0,0 +1,17 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"noEmit": true
},
"exclude": ["dist", "node_modules"],
"include": [
"__fixtures__",
"__tests__",
"src",
"eslint.config.mjs",
"jest.config.js",
"rollup.config.ts"
]
}