mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:34:22 +03:00
1d0dfe17f8
- Potentially fixes https://github.com/enso-org/enso/issues/10667 - Potentially fixes a similar issue with labels test failiing # Important Notes None
24 lines
468 B
JSON
24 lines
468 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": [
|
|
"src",
|
|
"e2e",
|
|
"../types",
|
|
"./src/**/*.json",
|
|
"./e2e/**/*.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"]
|
|
}
|
|
}
|