mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-02 03:00:32 -04:00
* trying to fix Backend docker image with lerna * fix dockerfile CMD * Fix Dockerfile build * Fix 3box types Co-authored-by: Hammad Jutt <jutt@ualberta.ca>
25 lines
600 B
JSON
25 lines
600 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": [
|
|
"packages/types",
|
|
"node_modules/@types"
|
|
]
|
|
}
|
|
}
|