mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 21:45:53 -05: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>
29 lines
575 B
JSON
29 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"typeRoots": [
|
|
"../@types", "../../node_modules/@types"]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"./@types"
|
|
]
|
|
}
|