mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
927df167d7
- Closes #8072 - Implement handlers for the corresponding buttons on the circular menu - Add missing icons and styles - Add functionality to match and extract ASTs # Important Notes None
35 lines
849 B
JSON
35 lines
849 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/**/*"
|
|
],
|
|
"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,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"types": ["vitest/importMeta"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../ide-desktop/lib/dashboard/tsconfig.json"
|
|
}
|
|
]
|
|
}
|