forked from mito-systems/sol-mem-gen
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"]
|
|
}
|