Initial commit of my folder

This commit is contained in:
Timothy
2026-03-10 20:41:46 +00:00
parent 37becee76a
commit 7ad88804f3
1225 changed files with 238706 additions and 0 deletions

45
backend/node_modules/node-osc/tsconfig.json generated vendored Normal file
View File

@ -0,0 +1,45 @@
{
"compilerOptions": {
// Enable JSDoc type checking
"allowJs": true,
"checkJs": false,
// Generate declaration files only
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": true,
// Output directory for declarations
"outDir": "./types",
// Module settings for ESM (will generate .d.mts files)
"module": "ES2022",
"moduleResolution": "node",
"target": "ES2022",
// Allow default imports from modules with no default export
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// Strict options for better type inference
"strict": false,
"skipLibCheck": true,
// Resolve JSON modules
"resolveJsonModule": true,
// Base URL for paths
"baseUrl": ".",
"paths": {
"#decode": ["./lib/internal/decode.mjs"]
}
},
"include": [
"lib/**/*.mjs"
],
"exclude": [
"node_modules",
"dist",
"test"
]
}