1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Merge pull request #13245 from Budibase/tsconfig-paths-for-lsp

Add paths to builder TypeScript config for module resolution aliases with LSP
This commit is contained in:
Andrew Kingston 2024-03-19 13:08:49 +00:00 committed by GitHub
commit 0f245d4b38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,16 @@
"composite": true,
"declaration": true,
"sourceMap": true,
"baseUrl": "."
"baseUrl": ".",
"paths": {
"assets/*": ["./assets/*"],
"@budibase/*": [
"../*/src/index.ts",
"../*/src/index.js",
"../*",
"../../node_modules/@budibase/*"
],
"*": ["./src/*"]
}
}
}