feat: scaffold Next.js landing page app at apps/landing

This commit is contained in:
ashim-hq
2026-04-23 17:19:48 +08:00
parent 136a4dd641
commit 2260d696bc
11 changed files with 807 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"plugins": [
{
"name": "next"
}
],
"incremental": true,
"allowJs": true
},
"include": ["src/**/*", "next-env.d.ts", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}