mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 08:58:02 -05:00
* squashing @thebeyondr's adding an image to quests 🧣 * cleaning, conglomerating, & standardizing ⚽ * properly spreading arguments & restructuring forms 🥴 * setting required pSEED to 0 in testing & switching the IPFS gateway ⛑ * printing `NODE_ENV` to double check testing setting 🔩 * `connecting` needs to be initially false to avoid a hydration error 🛶 * testing if setting `$NODE_ENV` is sufficient for configuration 🦋 * seeing if "development" works as a `NODE_ENV` for Next.js ⛳ * adding graphql retry on empty response 🥁 * consuming `NODE_ENV` in Dockerfile 🥺 * going to `APP_ENV` b/c `NODE_ENV` is unsettable 🎺 * removing printing `NEXT_PUBLIC_APP_ENV` 🦷 * making entire quest tile a link * aligned rank tag in quest details page * fix: 🐛 Add a `minWidth` to `PlayerTile` * feat: ✨ Add more accurate image preview for quests * feat: ✨ Add image to `QuestDetail` * refactor: 💬 Update `Raid/Phase III` description * UI & semantics tweaks from @luxumbra 🧞♀️ * centering short quest titles 🇪🇺 * borked the quest title centering 👹 Co-authored-by: Scott Stevenson <scott@1box.onmicrosoft.com> Co-authored-by: thebeyondr <beyondr42@gmail.com>
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
"moduleResolution": "Node",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": false,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"noEmitOnError": true,
|
|
"downlevelIteration": true,
|
|
|
|
"composite": true,
|
|
|
|
"typeRoots": [
|
|
"./packages/@types",
|
|
"./node_modules/@types",
|
|
"./packages/backend/node_modules/@types",
|
|
"./packages/discord-bot/node_modules/@types",
|
|
"./packages/web/node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/",
|
|
"**/dist/",
|
|
"**/*.mjs",
|
|
"**/coverage/",
|
|
"**/jest.config.js"
|
|
]
|
|
}
|