mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
20 lines
520 B
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" }]
|
|
}
|