1 | {
|
2 | "exclude": ["dist", "node_modules"],
|
3 | "compilerOptions": {
|
4 | "target": "ES2020",
|
5 | "declaration": true,
|
6 | "declarationMap": true,
|
7 | "esModuleInterop": true,
|
8 | "module": "commonjs",
|
9 | "moduleResolution": "node",
|
10 | "noUnusedLocals": true,
|
11 | "sourceMap": true,
|
12 | "inlineSources": true,
|
13 | "noImplicitAny": false,
|
14 | "incremental": true,
|
15 | "types": [],
|
16 | "strict": true,
|
17 | "pretty": true,
|
18 | "lib": ["ES2020", "DOM", "DOM.Iterable"]
|
19 | }
|
20 | }
|