mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:54:09 +03:00
375e610660
- Closes #8071 # Important Notes There is currently no way to predict the width a node, taking into account the width of widgets. This should probably be done in another task.
32 lines
776 B
JSON
32 lines
776 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"shared/**/*",
|
|
"shared/**/*.vue",
|
|
"src/util/theme.json"
|
|
],
|
|
"exclude": ["src/**/__tests__/*", "shared/**/__tests__/*", "public/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"resolvePackageJsonExports": false,
|
|
"composite": true,
|
|
"outDir": "../../node_modules/.cache/tsc",
|
|
"baseUrl": ".",
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"types": ["vitest/importMeta"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../ide-desktop/lib/dashboard/tsconfig.json"
|
|
}
|
|
]
|
|
}
|