mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
19 lines
509 B
JSON
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"]
|
|
}
|