Skip to content

Commit 0b5583f

Browse files
committed
cleanup eslint config, ignore, tsconfig
1 parent 9592699 commit 0b5583f

File tree

3 files changed

+2
-17
lines changed

3 files changed

+2
-17
lines changed

packages/replay/.eslintrc.js

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,7 @@
55

66
module.exports = {
77
extends: ['../../.eslintrc.js'],
8-
ignorePatterns: [
9-
'coverage/**',
10-
'build/**',
11-
'dist/**',
12-
'cjs/**',
13-
'esm/**',
14-
'examples/**',
15-
'test/manual/**',
16-
'types/**',
17-
// TODO: Remove these after migration
18-
'scripts/**',
19-
'__mocks__/**',
20-
'rollup.config.worker.js',
21-
],
8+
ignorePatterns: ['rollup.config.worker.js'],
229
overrides: [
2310
{
2411
files: ['worker/**/*.ts'],

packages/replay/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules
22
/*.tgz
33
.eslintcache
4-
dist
54
build

packages/replay/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"allowJs": true,
1717
"declaration": true,
1818
"declarationMap": true,
19-
"strictNullChecks": true,
20-
"outDir": "./build/npm/dist"
19+
"strictNullChecks": true
2120
},
2221
"include": ["src/**/*.ts"],
2322
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)