mirror of
https://github.com/enso-org/enso.git
synced 2024-12-12 19:16:08 +03:00
44f2f425c0
- Depends on #7773. - Implements binary WebSocket protocol (data protocol) - Performs some editor initialization (the bare minimum so that visualizations work) - Adds event handlers to receive visualization data updates # Important Notes None
22 lines
510 B
JSON
22 lines
510 B
JSON
{
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"playwright.config.*",
|
|
"eslint.config.js",
|
|
"e2e/**/*",
|
|
"node.env.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"verbatimModuleSyntax": true,
|
|
"outDir": "../../node_modules/.cache/tsc",
|
|
"types": ["node", "vitest/importMeta"]
|
|
}
|
|
}
|