mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-21 04:07:54 -05:00
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
18 lines
479 B
JSON
18 lines
479 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",
|
|
"composite": true,
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo"
|
|
},
|
|
"references": [{ "path": "../utils" }, { "path": "../discord-bot" }],
|
|
"include": ["src", "src/**/*.json"],
|
|
"exclude": ["./tests"]
|
|
}
|