mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 17:08:00 -05:00
25 lines
531 B
JSON
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"]
|
|
}
|