typescript-config/tsconfig.json

21 lines
539 B
JSON
Raw Permalink Normal View History

2024-05-11 23:34:03 -07:00
{
"compilerOptions": {
"target": "ES2022",
2024-06-25 18:21:37 -07:00
"module": "ES2022",
"moduleResolution": "Node",
2024-05-11 23:34:03 -07:00
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
2024-06-25 18:21:37 -07:00
"forceConsistentCasingInFileNames": true
}
2024-05-11 23:34:03 -07:00
}