1
1
mirror of https://github.com/enso-org/enso.git synced 2024-12-24 00:07:10 +03:00
enso/app/gui2/tsconfig.node.json
Kaz Wesley 9fd1ab9092
Parser TS bindings ()
Generate TS bindings and lazy deserialization for the parser types.

# Important Notes
- The new API is imported into `ffi.ts`, but not yet used.
- I have tested the generated code in isolation, but cannot commit tests as we are not currently able to load WASM modules when running in `vitest`.
2023-10-11 13:04:38 +00:00

23 lines
537 B
JSON

{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"playwright.config.*",
"eslint.config.js",
"e2e/**/*",
"parser-codegen/**/*",
"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"]
}
}