Files
TheGame/packages/utils/tsconfig.json
Pacien Boisson 64f9a2f661 Fix package/utils TS compiling
Due to recent change to tsconfigs, the utils module was compiling in esnext and the backend was broken
2020-07-28 12:55:52 -06:00

12 lines
230 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"composite": true,
"rootDir": "src",
"outDir": "dist",
"tsBuildInfoFile": "dist/.tsbuildinfo"
},
"include": ["src"]
}