Files
TheGame/packages/web/tsconfig.json
2022-05-03 09:31:01 -06:00

25 lines
531 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"allowJs": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "ES2017", "ESNext"],
"baseUrl": ".",
"noEmit": true,
"incremental": true
},
"references": [
{
"path": "../utils/tsconfig.json"
},
{
"path": "../design-system/tsconfig.build.json"
}
],
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts"],
"exclude": ["out", ".next", "node_modules"]
}