Skip to content

Instantly share code, notes, and snippets.

@mellumeriktest
Created October 20, 2024 03:10
Show Gist options
  • Save mellumeriktest/3f9c6ab2a4920b8aa798d4fe5d1cd0c3 to your computer and use it in GitHub Desktop.
Save mellumeriktest/3f9c6ab2a4920b8aa798d4fe5d1cd0c3 to your computer and use it in GitHub Desktop.
{
"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