mirror of
https://gitlab.com/the-no-frauds-club/cosmonarchy-bw-prerelease.git
synced 2026-09-21 14:21:34 +00:00
24 lines
589 B
JSON
24 lines
589 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["ESNext"],
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "Preserve",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"types": ["bun"],
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"noEmit": true,
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
||
|
|
}
|