Skip to content

Commit

Permalink
chore: remove redundant path from tsconfig include
Browse files Browse the repository at this point in the history
  • Loading branch information
mym0404 committed May 2, 2024
1 parent 22392ad commit 799da4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"start": "react-native start",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"lint": "eslint src --max-warnings=0",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --max-warnings=0",
"typescript": "tsc --noEmit",
"validate": "yarn lint && yarn typescript",
"ci:publish": "npx semantic-release",
Expand Down
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,5 @@
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": [
"./src/",
"./src/codegenSpec"
]
"include": ["./src/"]
}

0 comments on commit 799da4d

Please sign in to comment.