Skip to content

Commit 4e30b65

Browse files
committed
build(replay): Improve tsconfig for replay
1 parent 9ead587 commit 4e30b65

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

packages/replay/tsconfig.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"module": "esnext",
5-
"noImplicitAny": true,
6-
"noEmitOnError": false,
7-
"esModuleInterop": true,
8-
"resolveJsonModule": true,
9-
"allowJs": true,
10-
"declaration": true,
11-
"declarationMap": true,
12-
"strictNullChecks": true
4+
"module": "esnext"
135
},
14-
"include": ["src/**/*.ts"],
15-
"exclude": ["node_modules"]
6+
"include": ["src/**/*.ts"]
167
}

packages/replay/tsconfig.test.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
"include": ["test/**/*.ts", "jest.config.ts", "jest.setup.ts"],
55

66
"compilerOptions": {
7-
"baseUrl": ".",
8-
"rootDir": ".",
97
"types": ["node", "jest"],
10-
"noImplicitAny": false,
8+
"esModuleInterop": true,
9+
"allowJs": true,
10+
"noImplicitAny": true,
1111
"noImplicitThis": false,
12-
"strictPropertyInitialization": false,
13-
"resolveJsonModule": true,
14-
"allowJs": true
12+
"strictNullChecks": true,
13+
"strictPropertyInitialization": false
1514
}
1615
}

0 commit comments

Comments
 (0)