Files
TheGame/packages/backend/tsconfig.json
2022-07-05 21:01:30 -06:00

19 lines
509 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "MyMeta's Backend",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["ES2021"],
"module": "CommonJS",
"target": "ES2021",
"outDir": "dist",
"rootDir": "src",
"baseUrl": "src",
"composite": true,
"tsBuildInfoFile": "dist/.tsbuildinfo"
},
"references": [{ "path": "../utils" }, { "path": "../discord-bot" }],
"include": ["src/**/*.ts", "src/**/*.json"],
"exclude": ["./tests"]
}