Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Jan 3, 2024
1 parent 26ce167 commit 158edad
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/create/src/recipes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Recipe } from "./types.js";

export { baseRecipe };

export const recipes: Recipe[] = [
export const recipes: Recipe<any>[] = [
// frameworks
express,
nextjs,
Expand Down
10 changes: 8 additions & 2 deletions packages/create/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,11 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["src/**/*"],
}
"include": [
"src/**/*"
],
"exclude": [
"src/recipes/nextjs/template/*",
"src/recipes/nextjs/template-js/*"
]
}

0 comments on commit 158edad

Please sign in to comment.