mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 21:12:44 +03:00
16 lines
364 B
JSON
16 lines
364 B
JSON
|
{
|
||
|
"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"]
|
||
|
}
|
||
|
}
|