Files
TheGame/tsconfig.base.json
δυς f5295c3242 Reading and Writing Profile Info From Ceramic (#943)
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
2022-01-25 16:51:53 -05:00

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"]
}