28 lines
711 B
JSON
28 lines
711 B
JSON
{
|
|
"extends": "@tsconfig/node10/tsconfig.json",
|
|
"compilerOptions": {
|
|
// Object.fromEntries
|
|
"lib": ["es2019.object"],
|
|
"declaration": true,
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"strict": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node",
|
|
/* This needs to be false so our types are possible to consume without setting this */
|
|
"esModuleInterop": false,
|
|
"skipLibCheck": false,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|