mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-15 01:17:57 -05:00
25 lines
542 B
JSON
25 lines
542 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"tsBuildInfoFile": "out/.tsbuildinfo",
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2017"],
|
|
"baseUrl": ".",
|
|
"noEmit": true
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../utils/tsconfig.json"
|
|
},
|
|
{
|
|
"path": "../design-system/tsconfig.build.json"
|
|
}
|
|
],
|
|
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts"],
|
|
"exclude": ["out", ".next", "node_modules"]
|
|
}
|