Files
honey-fe/tsconfig.node.json
Voldemar 74cb37942e
Some checks failed
Deploy to VPS (dist) / deploy (push) Has been cancelled
feat: setup libs
Co-authored-by: Hewston Fox <hewstonfox@gmail.com>
Co-authored-by: autofix <noreply@autofix.ci>
Reviewed-on: #1
2026-03-08 23:30:37 +00:00

26 lines
613 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}