Skip to content

Commit

Permalink
fix(projen): Add missing configuration
Browse files Browse the repository at this point in the history
Adds missing Git ignore pattern to exclude ignore rules for projen
configuration files.

Fixes #425.
  • Loading branch information
langri-sha committed Apr 28, 2024
1 parent e946d78 commit 5157018
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Project } from '@langri-sha/projen-project'

const project = new Project({
name: "langri-sha.com",
withTypeScript: true,
withTerraform: true,
workspaces: [
'apps/*',
'packages/*'
]
});

project.synth();
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"extends": "@langri-sha/tsconfig",
"files": [
".eslintrc.js",
".projenrc.ts",
"babel.config.js",
"jest.config.ts",
"lint-staged.config.js",
Expand Down

0 comments on commit 5157018

Please sign in to comment.