This commit is contained in:
Vomitblood 2026-04-30 09:51:18 +08:00
parent 6a80f8eefa
commit 217f78b239
2 changed files with 15 additions and 4 deletions

View file

@ -1,8 +1,18 @@
{
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "consistent",
"semi": true,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"proseWrap": "never",
"endOfLine": "auto"
}
"useTabs": false
}

View file

@ -1,7 +1,8 @@
import { NS } from '@ns';
import { scan } from './utils/scan';
import { startall } from './utils/startall';
import { kill } from './utils/kill';
export const main = (ns: NS) => {
ns.tprint(ns.purchaseServer('chungus', 128));
ns.tprint(ns.getPurchasedServerCost(256));
};