mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 00:48:18 -05:00
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
28 lines
779 B
JSON
28 lines
779 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"lib": ["ES2019", "ES2020", "ESNext"],
|
|
"moduleResolution": "Node",
|
|
"jsx": "react",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"typeRoots": ["./packages/@types", "./node_modules/@types"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/dist"]
|
|
}
|