mirror of
https://github.com/enso-org/enso.git
synced 2024-12-24 00:07:10 +03:00
9fd1ab9092
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`.
23 lines
537 B
JSON
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"]
|
|
}
|
|
}
|