This commit is contained in:
Soph :3 2024-05-03 20:16:13 +03:00
parent 6715d264e4
commit a83abf598d
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
3 changed files with 1 additions and 31 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -2,14 +2,11 @@
"name": "cla66ic",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"cbor-x": "^1.5.9",
"netlinkwrapper": "^2.0.2"
"@types/bun": "latest"
}
}

View file

@ -1,27 +0,0 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}