resume/tsconfig.json
Naomi Carrigan abe0c7f94c
All checks were successful
Node.js CI / Lint and Test (push) Successful in 40s
feat: ship it let's gooooooooo
2025-04-08 17:25:10 -07:00

25 lines
639 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "src",
"outDir": "dist",
"noEmit": true
},
"exclude": ["test/**/*.spec.ts"]
}