mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
5c4660b5aa
implement [issue#5694](https://github.com/enso-org/enso/issues/5694)
31 lines
748 B
JSON
31 lines
748 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"checkJs": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2019",
|
|
"paths": {
|
|
"@ensogl-app": ["../../target/ensogl-pack/linked-dist/index"],
|
|
"@build-cfg": ["./build.json"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"files": true
|
|
}
|
|
}
|