Files
TheGame/packages/web/tsconfig.json
2020-07-29 14:36:41 -06:00

24 lines
499 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"isolatedModules": true,
"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"]
}