Created
October 20, 2024 03:10
-
-
Save mellumeriktest/3f9c6ab2a4920b8aa798d4fe5d1cd0c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": "@repo/typescript-config/nextjs.json", | |
"compilerOptions": { | |
"target": "es2015", | |
"plugins": [ | |
{ | |
"name": "next" | |
} | |
], | |
"outDir": "dist", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"incremental": true, | |
"baseUrl": ".", | |
"paths": { | |
"@/*": [ | |
"src/app/*" | |
] | |
}, | |
"resolveJsonModule": true | |
}, | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"include": [ | |
"next-env.d.ts", | |
"next.config.mjs", | |
"src", | |
".next/types/**/*.ts" | |
], | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment