File tree Expand file tree Collapse file tree 4 files changed +73
-63
lines changed
Expand file tree Collapse file tree 4 files changed +73
-63
lines changed Original file line number Diff line number Diff line change 22
33Basic template for robust development of TypeScript apps with:
44
5- - [ Node.js] ( https://nodejs.org/docs/latest-v22.x/api/index.html ) - Latest LTS version of Node. Currently it's ** LTS/Jod** (v22.16 .0).
5+ - [ Node.js] ( https://nodejs.org/docs/latest-v22.x/api/index.html ) - Latest LTS version of Node. Currently it's ** LTS/Jod** (v22.17 .0).
66- [ pnpm] ( https://pnpm.io/ ) - Fast, disk space efficient package manager.
77- [ TypeScript] ( https://www.typescriptlang.org/ ) - JavaScript with syntax for types.
88- [ ESM Modules] ( https://nodejs.org/api/esm.html ) - modern JavaScript modules.
Original file line number Diff line number Diff line change 11{
2- "$schema" : " https://biomejs.dev/schemas/1.9.4/schema.json" ,
3- "organizeImports" : {
4- "enabled" : true
5- },
2+ "$schema" : " https://biomejs.dev/schemas/2.0.6/schema.json" ,
3+ "assist" : { "actions" : { "source" : { "organizeImports" : " on" } } },
64 "linter" : {
75 "enabled" : true ,
86 "rules" : {
9- "recommended" : true
7+ "recommended" : true ,
8+ "style" : {
9+ "noParameterAssign" : " error" ,
10+ "useAsConstAssertion" : " error" ,
11+ "useDefaultParameterLast" : " error" ,
12+ "useEnumInitializers" : " error" ,
13+ "useSelfClosingElements" : " error" ,
14+ "useSingleVarDeclarator" : " error" ,
15+ "noUnusedTemplateLiteral" : " error" ,
16+ "useNumberNamespace" : " error" ,
17+ "noInferrableTypes" : " error" ,
18+ "noUselessElse" : " error"
19+ }
1020 }
1121 },
1222 "formatter" : {
1323 "enabled" : true ,
1424 "formatWithErrors" : false ,
15- "ignore " : [],
25+ "includes " : [" ** " ],
1626 "attributePosition" : " auto" ,
1727 "indentStyle" : " tab" ,
1828 "indentWidth" : 4 ,
Original file line number Diff line number Diff line change 3232 ],
3333 "license" : " MIT" ,
3434 "devDependencies" : {
35- "@biomejs/biome" : " ^1.9.4 " ,
36- "@types/node" : " ^22.15.24 " ,
35+ "@biomejs/biome" : " ^2.0.6 " ,
36+ "@types/node" : " ^24.0.8 " ,
3737 "rimraf" : " ^6.0.1" ,
38- "tsx" : " ^4.19.4 " ,
38+ "tsx" : " ^4.20.3 " ,
3939 "typescript" : " ^5.8.3"
4040 },
4141 "volta" : {
42- "node" : " 22.16 .0" ,
43- "pnpm" : " 10.11.0 "
42+ "node" : " 22.17 .0" ,
43+ "pnpm" : " 10.12.4 "
4444 },
4545 "pnpm" : {
4646 "onlyBuiltDependencies" : [
You can’t perform that action at this time.
0 commit comments