mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 00:48:18 -05:00
20 lines
577 B
JSON
20 lines
577 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "MyMeta's Backend",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"outDir": "dist/",
|
|
"rootDir": "src/",
|
|
"baseUrl": "src/",
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
|
},
|
|
"references": [{ "path": "../utils" }, { "path": "../discord-bot" }],
|
|
"include": ["src/**/*.ts", "src/**/*.json"],
|
|
"exclude": ["tests/", "dist/", "coverage/", "node_modules/"],
|
|
"ts-node": {
|
|
"require": ["tsconfig-paths/register"]
|
|
}
|
|
}
|