mirror of
https://github.com/enso-org/enso.git
synced 2024-12-26 18:52:46 +03:00
30 lines
717 B
JSON
30 lines
717 B
JSON
{
|
|
"include": ["src/**/*"],
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"lib": ["ES2021", "dom"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"outDir": "dist",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2019"
|
|
},
|
|
"ts-node": {
|
|
"esm": true
|
|
}
|
|
}
|