feat: ship it let's gooooooooo
Node.js CI / Lint and Test (push) Successful in 40s

This commit is contained in:
2025-04-08 17:25:10 -07:00
parent daed9f26ab
commit abe0c7f94c
15 changed files with 6335 additions and 14 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "src",
"outDir": "dist",
"noEmit": true
},
"exclude": ["test/**/*.spec.ts"]
}