enso/app/ydoc-shared/parser-codegen/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
364 B
JSON
Raw Normal View History

{
"extends": "@tsconfig/node20/tsconfig.json",
"include": ["*.ts"],
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"strict": true,
"verbatimModuleSyntax": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"strictNullChecks": true,
"types": ["node"]
}
}