enso/app/gui2/tsconfig.node.json
Paweł Grabarz b286adaae4
Split ydoc server into separate module (#10735)
# Important Notes
The command to run the gui dev environment has been changed. Invoking the old command will print a message about that.
From now on, use `pnpm dev:gui2` in repository root.
2024-08-08 12:12:05 +00:00

22 lines
454 B
JSON

{
"extends": "./tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"project-manager-shim-middleware/*.ts",
"playwright.config.*",
"eslint.config.js",
"histoire.config.ts",
"e2e/**/*",
"parser-codegen/**/*",
"node.env.d.ts",
"mock/engine.ts"
],
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"verbatimModuleSyntax": true,
"types": ["node", "vitest/importMeta"]
}
}