Files
TheGame/packages/web/tsconfig.json
2020-07-24 10:01:25 -06:00

22 lines
426 B
JSON

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