mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 03:11:35 +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`.
33 lines
791 B
JSON
33 lines
791 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"shared/**/*",
|
|
"shared/**/*.vue",
|
|
"public/**/*",
|
|
"public/**/*.vue"
|
|
],
|
|
"exclude": ["src/**/__tests__/*", "shared/**/__tests__/*", "public/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"resolvePackageJsonExports": false,
|
|
"composite": true,
|
|
"outDir": "../../node_modules/.cache/tsc",
|
|
"baseUrl": ".",
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"types": ["vitest/importMeta"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../ide-desktop/lib/dashboard/tsconfig.json"
|
|
}
|
|
]
|
|
}
|