ci: add Go/Node CI, Docker multi-stage, Makefile, and pre-commit hooks; update README

This commit is contained in:
Wikid82
2025-11-17 18:16:03 -05:00
parent 4f3b7d8f99
commit 6b0dfa7085
40 changed files with 4954 additions and 85 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true
}
}