mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
b7a8909818
- Improved performance by batching simulatenous node edits, including metadata updates when dragging many selected nodes together. - Updated Vue to new version, allowing us to use `defineModel`. - Fixed #9161 - Unified all handling of auto-blur by making `useAutoBlur` cheap to register - all logic goes through a single window event handler. - Combined all `ResizeObserver`s into one. - Fixed the behaviour of repeated toast messages. Now only the latest compilation status is visible at any given time, and the errors disappear once compilation passes. - Actually fixed broken interaction of node and visualization widths. There no longer is a style feedback loop and the visible node backdrop width no longer jumps or randomly fails to update.
40 lines
893 B
JSON
40 lines
893 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"env.story.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.json",
|
|
"src/**/*.vue",
|
|
"shared/**/*",
|
|
"shared/**/*.vue",
|
|
"public/**/*",
|
|
"public/**/*.vue",
|
|
"stories/**/*",
|
|
"stories/**/*.json",
|
|
"stories/**/*.vue"
|
|
],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"resolvePackageJsonExports": false,
|
|
"composite": true,
|
|
"outDir": "../../node_modules/.cache/tsc",
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"types": ["vitest/importMeta"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../ide-desktop/lib/dashboard/tsconfig.json"
|
|
}
|
|
]
|
|
}
|