File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # dependencies (bun install)
2+ node_modules
3+ .cursor
4+ # output
5+ out
6+ dist
7+ * .tgz
8+
9+ # code coverage
10+ coverage
11+ * .lcov
12+
13+ # logs
14+ logs
15+ _.log
16+ report. [0-9 ]_. [0-9 ]_. [0-9 ]_. [0-9 ]_.json
17+
18+ # dotenv environment variable files
19+ .env
20+ .env.development.local
21+ .env.test.local
22+ .env.production.local
23+ .env.local
24+
25+ # caches
26+ .eslintcache
27+ .cache
28+ * .tsbuildinfo
29+
30+ # IntelliJ based IDEs
31+ .idea
32+
33+ # Finder (MacOS) folder config
34+ .DS_Store
Original file line number Diff line number Diff line change 1+ # bunkill
2+
3+ To install dependencies:
4+
5+ ``` bash
6+ bun install
7+ ```
8+
9+ To run:
10+
11+ ``` bash
12+ bun run index.ts
13+ ```
14+
15+ This project was created using ` bun init ` in bun v1.2.18. [ Bun] ( https://bun.sh ) is a fast all-in-one JavaScript runtime.
Original file line number Diff line number Diff line change 1+ console . log ( 'Hello World!' ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " bunkill" ,
3+ "module" : " index.ts" ,
4+ "type" : " module" ,
5+ "private" : true ,
6+ "devDependencies" : {
7+ "@types/bun" : " latest"
8+ },
9+ "peerDependencies" : {
10+ "typescript" : " ^5"
11+ },
12+ "dependencies" : {
13+ "@types/inquirer" : " ^9.0.8" ,
14+ "chalk" : " ^5.4.1" ,
15+ "commander" : " ^14.0.0" ,
16+ "inquirer" : " ^12.8.2"
17+ }
18+ }
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ // Environment setup & latest features
4+ "lib" : [" ESNext" ],
5+ "target" : " ESNext" ,
6+ "module" : " Preserve" ,
7+ "moduleDetection" : " force" ,
8+ "jsx" : " react-jsx" ,
9+ "allowJs" : true ,
10+
11+ // Bundler mode
12+ "moduleResolution" : " bundler" ,
13+ "allowImportingTsExtensions" : true ,
14+ "verbatimModuleSyntax" : true ,
15+ "noEmit" : true ,
16+
17+ // Best practices
18+ "strict" : true ,
19+ "skipLibCheck" : true ,
20+ "noFallthroughCasesInSwitch" : true ,
21+ "noUncheckedIndexedAccess" : true ,
22+ "noImplicitOverride" : true ,
23+
24+ // Some stricter flags (disabled by default)
25+ "noUnusedLocals" : false ,
26+ "noUnusedParameters" : false ,
27+ "noPropertyAccessFromIndexSignature" : false
28+ }
29+ }
You can’t perform that action at this time.
0 commit comments