Files
TheGame/packages/backend/tsconfig.json
2021-11-30 14:54:49 -07:00

21 lines
368 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"tsBuildInfoFile": "dist/.tsbuildinfo"
},
"references": [
{
"path": "../utils"
},
{
"path": "../discord-bot"
}
],
"include": ["./src"],
"exclude": ["./tests"]
}