mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
21 lines
489 B
JSON
21 lines
489 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ESNext"],
|
||
|
|
"types": ["bun-types"],
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "."
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "tests/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|