@ehmicky/dev-tasks
Version:
Automated development tasks for my own projects
16 lines (15 loc) • 440 B
JSON
{
// When updating this file, `TSCONFIG_FLAGS` in `types.js` must be updated too
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "esnext",
"lib": ["esnext"],
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true
}
}