Initial commit

This commit is contained in:
Jesse Wierzbinski 2023-09-10 17:31:08 -10:00
commit 436a79d99f
No known key found for this signature in database
GPG key ID: F9A1E418934E40B0
50 changed files with 870 additions and 0 deletions

30
tsconfig.json Normal file
View file

@ -0,0 +1,30 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"noImplicitAny": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"experimentalDecorators": true,
"types": [
"bun-types" // add Bun global
],
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"]
}
}
}