mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 08:58:02 -05:00
This is being merged for further testing so as to not block the progress of `develop` & not require more rebases.
20 lines
486 B
JSON
20 lines
486 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ES2017", "ESNext"],
|
|
"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"]
|
|
}
|