[READ-ONLY] Mirror of https://github.com/bombshell-dev/template.
0

Configure Feed

Select the types of activity you want to include in your feed.

initial commit

Nate Moore (Nov 9, 2024, 9:35 PM -0600) c046931d

+119
.github/workflows/.gitkeep

This is a binary file and will not be displayed.

+67
.gitignore
··· 1 + # macOS specific files 2 + .DS_Store 3 + 4 + # Logs 5 + logs 6 + *.log 7 + npm-debug.log* 8 + yarn-debug.log* 9 + yarn-error.log* 10 + lerna-debug.log* 11 + .pnpm-debug.log* 12 + 13 + # Diagnostic reports (https://nodejs.org/api/report.html) 14 + report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 15 + 16 + # Runtime data 17 + pids 18 + *.pid 19 + *.seed 20 + *.pid.lock 21 + 22 + # node-waf configuration 23 + .lock-wscript 24 + 25 + # Compiled binary addons (https://nodejs.org/api/addons.html) 26 + build/Release 27 + 28 + # Dependency directories 29 + node_modules/ 30 + jspm_packages/ 31 + 32 + # TypeScript cache 33 + *.tsbuildinfo 34 + 35 + # Optional npm cache directory 36 + .npm 37 + 38 + # Microbundle cache 39 + .rpt2_cache/ 40 + .rts2_cache_cjs/ 41 + .rts2_cache_es/ 42 + .rts2_cache_umd/ 43 + 44 + # Optional REPL history 45 + .node_repl_history 46 + 47 + # Output of 'npm pack' 48 + *.tgz 49 + 50 + # Yarn files 51 + .yarn 52 + .pnp.* 53 + .yarn-integrity 54 + 55 + # dotenv environment variable files 56 + .env 57 + .env.development.local 58 + .env.test.local 59 + .env.production.local 60 + .env.local 61 + 62 + # common cache locations 63 + .cache 64 + .temp 65 + 66 + # Stores VSCode versions used for testing VSCode extensions 67 + .vscode-test
README.md

This is a binary file and will not be displayed.

+22
package.json
··· 1 + { 2 + "name": "@bomb.sh/template", 3 + "private": true, 4 + "version": "0.0.0", 5 + "type": "module", 6 + "license": "MIT", 7 + "author": { 8 + "name": "Bombshell", 9 + "email": "oss@bomb.sh", 10 + "url": "https://bomb.sh" 11 + }, 12 + "repository": { 13 + "type": "git", 14 + "url": "git+https://github.com/bombshell-dev/template.git" 15 + }, 16 + "scripts": { 17 + "start": "tsx index.ts" 18 + }, 19 + "devDependencies": { 20 + "tsx": "^4.19.2" 21 + } 22 + }
+1
src/index.ts
··· 1 + // Hello world!
+29
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + /* Base Options: */ 4 + "esModuleInterop": true, 5 + "skipLibCheck": true, 6 + "target": "es2022", 7 + "allowJs": true, 8 + "resolveJsonModule": true, 9 + "moduleDetection": "force", 10 + "isolatedModules": true, 11 + "verbatimModuleSyntax": true, 12 + "allowImportingTsExtensions": true, 13 + 14 + /* Strictness */ 15 + "strict": true, 16 + "noUncheckedIndexedAccess": true, 17 + "noImplicitOverride": true, 18 + 19 + /* Library mode */ 20 + "module": "preserve", 21 + "noEmit": true, 22 + "declaration": true, 23 + "lib": ["es2022"], 24 + 25 + /* Monorepo? */ 26 + "composite": true, 27 + "declarationMap": true, 28 + } 29 + }