Skip to content

Commit

Permalink
fix: linting config
Browse files Browse the repository at this point in the history
  • Loading branch information
proohit committed Nov 19, 2022
1 parent c444d12 commit 872f39c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion tsconfig.cjs.json
Expand Up @@ -3,5 +3,6 @@
"compilerOptions": {
"module": "CommonJS",
"outDir": "lib/cjs"
}
},
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
}
3 changes: 2 additions & 1 deletion tsconfig.esm.json
Expand Up @@ -2,5 +2,6 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "lib/esm"
}
},
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
}
3 changes: 1 addition & 2 deletions tsconfig.json
Expand Up @@ -20,6 +20,5 @@
"strictNullChecks": true,
"baseUrl": "."
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
"include": ["src/**/*", "test/**/*"]
}

0 comments on commit 872f39c

Please sign in to comment.