mirror of
https://github.com/enso-org/enso.git
synced 2024-11-26 17:06:48 +03:00
de9f2764f9
This PR removes enso-pack (ensogl-pack) crate. It still keeps the `enso-runner` JS package, as it is used for CLI argument parser and logger. The runner should be probably refactored (and possible removed altogether). # Important Notes I've temporarily extracted the `enso-runner` to `lib/js` directory, as I wanted to avoid keeping pure JS library under `lib/rust`. Attempts at integrating this with `app/ide-desktop` and family caused too much trouble for this PR. The expectation is that the package will be removed or moved elsewhere soon anyway.
28 lines
724 B
JSON
28 lines
724 B
JSON
{
|
|
"include": ["src/**/*", "src/**/*.json"],
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"lib": ["ES2021", "dom"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"composite": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"outDir": "dist",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2019"
|
|
}
|
|
}
|