Example using [Next.js Custom Server](https://nextjs.org/docs/pages/building-your-application/configuring/custom-server) with express. Made from official [examples/custom-server](https://github.com/vercel/next.js/tree/canary/examples/custom-server) from Next.js repository.
13 lines
238 B
JSON
13 lines
238 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"lib": ["es2019"],
|
|
"target": "ESNext",
|
|
"isolatedModules": false,
|
|
"noEmit": false
|
|
},
|
|
"include": ["src/server.ts"]
|
|
}
|