enso/app/gui2/tsconfig.node.json
somebody1234 927df167d7
Set output evaluation context for a single node (#8440)
- 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
2023-12-15 10:29:15 +00:00

25 lines
585 B
JSON

{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"playwright.config.*",
"eslint.config.js",
"histoire.config.ts",
"e2e/**/*",
"parser-codegen/**/*",
"node.env.d.ts",
"mock/engine.ts"
],
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"verbatimModuleSyntax": true,
"outDir": "../../node_modules/.cache/tsc",
"types": ["node", "vitest/importMeta"]
}
}