Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

Commit 1a2bff2

Browse files
committed
update tsconfig compile
1 parent 3feed17 commit 1a2bff2

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

tsconfig.build.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"exclude": ["test"],
3+
"extends": "./tsconfig.json",
4+
"compilerOptions": {
5+
"declaration": true,
6+
"declarationMap": true,
7+
"outDir": "./lib",
8+
"noEmit": false
9+
}
10+
}

tsconfig.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"include": ["src"],
2+
"include": ["src", "test"],
33
"compilerOptions": {
44
"baseUrl": ".",
5-
"declaration": true,
6-
"declarationMap": true,
75
"esModuleInterop": true,
86
"experimentalDecorators": true,
97
"lib": ["es2020", "dom", "dom.iterable"],
108
"module": "ESNext",
119
"moduleResolution": "node",
12-
"noEmit": false,
13-
"outDir": "./lib",
10+
"noEmit": true,
1411
"sourceMap": true,
1512
"strict": true,
16-
"target": "ES2017"
13+
"target": "ES2019"
1714
}
1815
}

0 commit comments

Comments
 (0)