mirror of
https://github.com/enso-org/enso.git
synced 2024-11-10 12:48:25 +03:00
1b59744660
This is a set of split off changes made as a side effect while working on engine reconnection handling. Cleaned up GUI e2e setup, unified as much of the entrypoint code as possible. Currently the only real difference between the real and testing entrypoint is mocking of all network calls and not loading through dashboard. I've managed to completely get rid of `MockApp`, and remove tricky mocking of pinia stores.
37 lines
890 B
JSON
37 lines
890 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"shared/**/*",
|
|
"shared/**/*.vue",
|
|
"src/util/theme.json",
|
|
"stories/mockSuggestions.json",
|
|
"mock/**/*",
|
|
"mock/**/*.vue"
|
|
],
|
|
"exclude": ["src/**/__tests__/*", "shared/**/__tests__/*", "public/**/__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"
|
|
}
|
|
]
|
|
}
|