Skip to content

Commit c16bb5d

Browse files
committed
remove tsconfig.base.json
1 parent b49082e commit c16bb5d

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

packages/replay/config/tsconfig.base.json

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
2-
"extends": "./tsconfig.base.json",
32
"compilerOptions": {
3+
"module": "esnext",
4+
"moduleResolution": "node",
5+
"noImplicitAny": true,
6+
"noEmitOnError": false,
7+
"esModuleInterop": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"target": "es5",
411
"allowJs": true,
512
"declaration": true,
613
"declarationDir": "./types",
@@ -10,5 +17,5 @@
1017
"outDir": "./build/npm/dist"
1118
},
1219
"include": ["../src/**/*.ts"],
13-
"exclude": ["../src/**/*.test.ts"]
20+
"exclude": ["../src/**/*.test.ts", "node_modules"]
1421
}
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
{
2-
"extends": "./tsconfig.base.json",
32
"compilerOptions": {
3+
"module": "esnext",
4+
"moduleResolution": "node",
5+
"noImplicitAny": true,
6+
"noEmitOnError": false,
7+
"esModuleInterop": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"target": "es5",
411
"declaration": false,
512
"lib": ["webworker", "scripthost"],
613
"baseUrl": "../worker/src",
714
"rootDir": "../worker/src",
815
"outDir": "../src/worker"
916
},
10-
"include": ["../worker/src/worker.ts", "../src/types.ts"]
17+
"include": ["../worker/src/worker.ts", "../src/types.ts"],
18+
"exclude": ["node_modules"]
1119
}

0 commit comments

Comments
 (0)