feat: run nodecg with system node22 by default

This commit is contained in:
Pandipipas
2026-02-10 14:13:37 +01:00
parent ccbb744a41
commit 2fb0d06ac0
8 changed files with 6177 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "Node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"sourceMap": true,
"types": ["node"]
},
"include": ["src/**/*.ts"]
}