enso/app/gui2/tsconfig.app.json
somebody1234 375e610660
Layout nodes without position (#8326)
- 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.
2023-11-20 14:17:34 +00:00

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"
}
]
}