Files
web/apps/bridge/tsconfig.json
Matthew Bunday 6cba5dc5f6 Bridge deprecation (#505)
* Deprecation content

* checkpoint, considering factoring out nav

* Update FAQ

* Configure code sharing ; nav

* Disable SSR to avoid hydration errors

* Add comment

* Lint

* Update FAQ

* Deprecate every page
2024-05-21 12:37:58 -04:00

28 lines
516 B
JSON

{
"extends": "../../tsconfig.projectOptions.json",
"compilerOptions": {
"composite": true,
"jsx": "preserve",
"emitDeclarationOnly": false,
"noEmit": true,
"outDir": "../../out/apps/web",
"module": "esnext",
"moduleResolution": "node",
"paths": {
"base-ui": ["../../libs/base-ui"]
},
},
"include": [
"next-env.d.ts",
"**/*",
"**/*.json",
"../../types/**/*"
],
"exclude": [],
"references": [
{
"path": "../../libs/base-ui"
}
]
}