Skip to content

Commit c565524

Browse files
committed
modified: tsconfig.json
1 parent f0f6fee commit c565524

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

tsconfig.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"compilerOptions": {
3-
"esModuleInterop": true,
4-
"skipLibCheck": true,
5-
"target": "esnext",
63
"allowJs": true,
7-
"resolveJsonModule": true,
8-
"moduleDetection": "force",
9-
"isolatedModules": true,
10-
"module": "preserve",
11-
"lib": ["esnext", "dom", "dom.iterable"],
12-
"strict": true,
134
"allowUnreachableCode": false,
145
"allowUnusedLabels": false,
15-
"noImplicitOverride": true,
6+
"declaration": true,
7+
"emitDeclarationOnly": true,
8+
"esModuleInterop": true,
169
"exactOptionalPropertyTypes": true,
10+
"isolatedModules": true,
11+
"lib": ["dom", "dom.iterable", "esnext"],
12+
"module": "preserve",
13+
"moduleDetection": "force",
14+
"noImplicitOverride": true,
1715
"noUncheckedIndexedAccess": true,
18-
"declaration": true
16+
"resolveJsonModule": true,
17+
"skipLibCheck": true,
18+
"strict": true,
19+
"target": "esnext"
1920
},
2021
"include": ["./index.ts"]
2122
}

0 commit comments

Comments
 (0)