Skip to content

Commit

Permalink
fix: failing type linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Jul 17, 2023
1 parent f1156f5 commit 3bafcbb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ lint: ## Run lint task to fix issues
$(NPM_RUNNER) lint:fix
.PHONY: lint

lint-types: ## Run typescript type checking
$(NPM_RUNNER) lint:types
.PHONY: lint-types

lint-staged: ## Lint staged files
$(NPM_RUNNER) lint:staged
.PHONY: lint-staged
Expand Down
1 change: 1 addition & 0 deletions packages/facebook-pixel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@wayofdev/facebook-pixel",
"version": "1.1.0",
"private": true,
"type": "module",
"homepage": "https://github.com/wayofdev/next-starter-tpl",
"license": "MIT",
"author": {
Expand Down
1 change: 1 addition & 0 deletions packages/google-tag-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@wayofdev/google-tag-manager",
"version": "1.1.0",
"private": true,
"type": "module",
"homepage": "https://github.com/wayofdev/next-starter-tpl",
"license": "MIT",
"author": {
Expand Down
7 changes: 4 additions & 3 deletions packages/google-tag-manager/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"exclude": ["**/node_modules", "**/.*/", "dist", "build"],
"include": ["./src"],
"include": ["./src/**/*"],
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"module": "commonjs",
"outDir": "dist",
"allowJs": true,
"jsx": "react-jsx",
"noEmit": false
"noEmit": false,
"verbatimModuleSyntax": false
}
}

0 comments on commit 3bafcbb

Please sign in to comment.