mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 11:21:43 +03:00
d9972d547a
Fixes #10197 # Important Notes From now on, package installation will be using `pnpm install`. Installing it globally is fine for convenience, but it can also be used as `corepack pnpm install` without having to install anything other than node. For now, all other scripts are still invoked using `npm`, so we can still invoke them with usual `--workspace` setting. As far as I can tell that doesn't really have any other side effects and is identical as running the script through `pnpm run` in respective workspace project subdirectory.
29 lines
545 B
JSON
29 lines
545 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": [
|
|
"src",
|
|
"e2e",
|
|
"../types",
|
|
"./src/**/*.json",
|
|
"../../utils.ts",
|
|
".prettierrc.cjs",
|
|
"*.js",
|
|
"*.ts"
|
|
],
|
|
"exclude": ["./dist"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"outDir": "../../../../node_modules/.cache/tsc",
|
|
"paths": { "#/*": ["./src/*"] },
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "ES2023"],
|
|
|
|
"plugins": [
|
|
{
|
|
"name": "ts-plugin-namespace-auto-import"
|
|
}
|
|
]
|
|
}
|
|
}
|