Files
TheGame/packages/web/tsconfig.json

20 lines
520 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"jsx": "preserve",
"noUnusedLocals": false,
"noUnusedParameters": false
},
"references": [
{ "path": "../utils/tsconfig.json" },
{ "path": "../design-system/tsconfig.build.json" }
],
"include": ["**/*.ts", "**/*.tsx", "**/*.json", "next-env.d.ts"],
"exclude": ["out", ".next", "node_modules"],
"plugins": [{ "name": "next" }]
}