|
1 | 1 | {
|
2 | 2 | "compilerOptions": {
|
3 |
| - "esModuleInterop": true, |
4 |
| - "skipLibCheck": true, |
5 |
| - "target": "esnext", |
6 | 3 | "allowJs": true,
|
7 |
| - "resolveJsonModule": true, |
8 |
| - "moduleDetection": "force", |
9 |
| - "isolatedModules": true, |
10 |
| - "module": "preserve", |
11 |
| - "lib": ["esnext", "dom", "dom.iterable"], |
12 |
| - "strict": true, |
13 | 4 | "allowUnreachableCode": false,
|
14 | 5 | "allowUnusedLabels": false,
|
15 |
| - "noImplicitOverride": true, |
| 6 | + "declaration": true, |
| 7 | + "emitDeclarationOnly": true, |
| 8 | + "esModuleInterop": true, |
16 | 9 | "exactOptionalPropertyTypes": true,
|
| 10 | + "isolatedModules": true, |
| 11 | + "lib": ["dom", "dom.iterable", "esnext"], |
| 12 | + "module": "preserve", |
| 13 | + "moduleDetection": "force", |
| 14 | + "noImplicitOverride": true, |
17 | 15 | "noUncheckedIndexedAccess": true,
|
18 |
| - "declaration": true |
| 16 | + "resolveJsonModule": true, |
| 17 | + "skipLibCheck": true, |
| 18 | + "strict": true, |
| 19 | + "target": "esnext" |
19 | 20 | },
|
20 | 21 | "include": ["./index.ts"]
|
21 | 22 | }
|
0 commit comments