forked from mito-systems/sol-mem-gen
Part of https://www.notion.so/Deploy-memes-markto-market-188a6b22d47280e38324efab1d3de55f - Use pinata URL in frontend Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-authored-by: Adw8 <adwaitgharpure@gmail.com> Reviewed-on: #9 Co-authored-by: adwait <adwait@noreply.git.vdb.to> Co-committed-by: adwait <adwait@noreply.git.vdb.to>
14 lines
340 B
JSON
14 lines
340 B
JSON
// Reference: https://github.com/vercel/next.js/blob/canary/examples/custom-server/tsconfig.server.json
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"lib": ["es2019"],
|
|
"target": "es2019",
|
|
"isolatedModules": false,
|
|
"noEmit": false
|
|
},
|
|
"include": ["server.ts"]
|
|
}
|