Files
web/apps/base-docs/tsconfig.json
Brendan from DeFi 58babadf41 Feat/update sprig (#572)
* moved Sprig integration from apps/web to libs

* deleted unused Sprig integration code from apps/web

* refactored useSprig hook to take configurable environmentId parameter

* Integrated Sprig into base-docs

* refactored sprig domains CSP to be hardcoded in apps

* Refactored base-docs Sprig integration to address import statement issues and supported sprig domains in CSP

* updated yarn dependencies

* refactored the base-docs Sprig integration to be on the layout Root instead of the index page

* Deleted eslintrc file
2024-06-18 14:50:24 -04:00

22 lines
334 B
JSON

{
"extends": "../../tsconfig.projectOptions.json",
"compilerOptions": {
"outDir": "../../out/apps/base-docs",
"paths": {
"base-ui": ["../../libs/base-ui"]
},
},
"include": [
"**/*",
"**/*.json"
],
"exclude": [
"dts"
],
"references": [
{
"path": "../../libs/base-ui"
}
]
}