Files
server/tsconfig.json
2023-07-12 14:51:32 -04:00

14 lines
268 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"target": "ES2022",
"module": "ES2022",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"files": [
"./src/server.ts"
]
}