Files
TheGame/packages/backend/tsconfig.json
δυς f5295c3242 Reading and Writing Profile Info From Ceramic (#943)
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
2022-01-25 16:51:53 -05:00

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"]
}