mirror of
https://github.com/placeholder-soft/web.git
synced 2026-01-12 22:45:00 +08:00
* 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
28 lines
516 B
JSON
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"
|
|
}
|
|
]
|
|
}
|