Files
TheGame/packages/metamaps/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

18 lines
422 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "es5",
"lib": ["dom", "es2017"],
"allowJs": true,
"strict": false,
"noEmit": true,
"isolatedModules": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"tsBuildInfoFile": "out/.tsbuildinfo",
"jsx": "preserve"
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}