Skip to content

Commit

Permalink
chore: update construct specific tsconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOrangePuff committed Nov 21, 2024
1 parent a1c30ae commit 2febddf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/basic-auth/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "lib/handlers"],
"include": ["lib/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion packages/cloudfront-security-headers/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "lib/handlers"],
"include": ["lib/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion packages/geoip-redirect/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "lib/handlers"],
"include": ["lib/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion packages/graphql-mesh-server/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "assets"],
"include": ["lib/**/*.ts", "assets/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion packages/prerender-proxy/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "lib/handlers"],
"include": ["lib/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion packages/static-hosting/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"module": "commonjs",
"types": ["node"]
},
"exclude": ["./jest.config.ts"],
"exclude": ["./jest.config.ts", "lib/handlers"],
"include": ["lib/**/*.ts", "index.ts"]
}
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
"typeRoots": ["./node_modules/@types"],
"baseUrl": "."
},
"exclude": ["**/node_modules", "cdk.out", "**/handlers/**"]
"exclude": ["**/node_modules", "cdk.out"]
}

0 comments on commit 2febddf

Please sign in to comment.