refactor: to node action
CI / Test (pull_request) Successful in 12s
CI / Check Dist (pull_request) Successful in 10s
CI / Dry-Run (pull_request) Successful in 24s

This commit is contained in:
2026-06-27 13:32:05 +02:00
parent 3730a56a77
commit a288738811
20 changed files with 24600 additions and 174 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"removeComments": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}