fosrl.pangolin/tsconfig.server.json
2024-09-28 18:18:16 -04:00

14 lines
No EOL
284 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./dist",
"noEmit": false,
"baseUrl": ".",
"paths": {
"@server/*": ["./server/*"]
}
},
"include": ["**/*.ts"]
}