mirror of
https://github.com/doum1004/llmwiki-cli.git
synced 2026-05-03 09:26:10 +02:00
21 lines
517 B
JSON
21 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"types": ["bun"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|