mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 00:48:18 -05:00
33 lines
656 B
JSON
33 lines
656 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"references": [
|
|
{ "path": "../utils/tsconfig.json" },
|
|
{ "path": "../design-system/tsconfig.build.json" }
|
|
],
|
|
"include": [
|
|
"**/*.mjs",
|
|
"*/**/*.ts",
|
|
"config.ts",
|
|
"**/*.tsx",
|
|
"**/*.json",
|
|
"next-env.d.ts"
|
|
],
|
|
"exclude": [
|
|
"out/",
|
|
".next/",
|
|
"node_modules/"
|
|
],
|
|
}
|