Skip to content

Commit

Permalink
update tsconfig again
Browse files Browse the repository at this point in the history
  • Loading branch information
groninge01 committed Sep 30, 2024
1 parent 0bb758d commit 766e84e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 9 additions & 1 deletion apps/frontend-v3/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@
}
],
"types": ["vitest/globals"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"../../packages/lib/global.d.ts",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules", ".next"]
}
4 changes: 2 additions & 2 deletions packages/lib/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "@repo/typescript-config/nextjs.json",
"extends": "@repo/typescript-config/react-library.json",
"compilerOptions": {
"module": "esnext",
"types": ["vitest/globals"]
},
"include": ["**/*.ts", "**/*.tsx"],
"include": ["**/*.ts", "**/*.tsx", "global.d.ts"],
"exclude": ["node_modules"]
}
10 changes: 1 addition & 9 deletions packages/typescript-config/nextjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,5 @@
"allowJs": true,
"jsx": "preserve",
"noEmit": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"../lib/global.d.ts",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules", ".next"]
}
}

0 comments on commit 766e84e

Please sign in to comment.