Files
TheGame/packages/web/tsconfig.json
δυς 5a5d6e2915 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-02-28 20:28:28 -08:00

20 lines
486 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"allowJs": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "ES2017", "ESNext"],
"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"]
}