Skip to content

Commit 872f39c

Browse files
committed
fix: linting config
1 parent c444d12 commit 872f39c

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

tsconfig.cjs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"compilerOptions": {
44
"module": "CommonJS",
55
"outDir": "lib/cjs"
6-
}
6+
},
7+
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
78
}

tsconfig.esm.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "lib/esm"
5-
}
5+
},
6+
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
67
}

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@
2020
"strictNullChecks": true,
2121
"baseUrl": "."
2222
},
23-
"include": ["src/**/*"],
24-
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
23+
"include": ["src/**/*", "test/**/*"]
2524
}

0 commit comments

Comments
 (0)