Files
TheGame/packages/web/tsconfig.json
Hammad Jutt e8f1a1628d Update TS, setup SourceCred SDK, and add helpers to utils (#107)
* Update TS version and setup SourceCred API in backend

* Fix typeError in Player.tsx

* Update yarn.lock

* Update yarn.lock and fix type errors
2020-09-06 18:50:22 -06:00

25 lines
542 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"isolatedModules": true,
"tsBuildInfoFile": "out/.tsbuildinfo",
"jsx": "preserve",
"lib": ["dom", "es2017"],
"baseUrl": ".",
"noEmit": true
},
"references": [
{
"path": "../utils/tsconfig.json"
},
{
"path": "../design-system/tsconfig.build.json"
}
],
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts"],
"exclude": ["out", ".next", "node_modules"]
}