mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 05:25:15 -05:00
Also replaced the local fonts with Google fonts since they are more performant and easier to package. Created a custom Link component to render the ChakraUI link inside the NextJS Link properly.
23 lines
473 B
JSON
23 lines
473 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2017"],
|
|
"noEmit": true
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../utils/tsconfig.json"
|
|
},
|
|
{
|
|
"path": "../design-system/tsconfig.json"
|
|
}
|
|
],
|
|
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts"],
|
|
"exclude": ["out", ".next", "node_modules"]
|
|
}
|