Files
TheGame/packages/web/tsconfig.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

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