mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-30 07:46:04 +00:00
Former-commit-id: 5568b2b8e7c70bfb08d687d116ec7c2efaf807b5 [formerly b741f2cf3cc6c3633c1c885cad7ea0555f08d893] [formerly 3e95074cad4892ea406b925008890d3c87f677b8 [formerly 7fea6fb22f8d81aaa9107d3b15a2b6ef60aa7186]] Former-commit-id: 4f9122520b87aaa7e2ef26b9aad2c7d6045f7edb [formerly f3e3208302d96d8868dbfa05a46668a9bddfcebc] Former-commit-id: 3184f8d4533878cfdc83632de27d6da1b8c103a0
26 lines
630 B
JSON
26 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|