1 | {
|
2 | "compilerOptions": {
|
3 | "target": "esnext",
|
4 | "module": "commonjs",
|
5 | "declaration": true,
|
6 | "outDir": "lib",
|
7 | "strict": true,
|
8 | "allowSyntheticDefaultImports": true,
|
9 | "esModuleInterop": true,
|
10 | "pretty": true,
|
11 | "downlevelIteration": true
|
12 | },
|
13 | "include": [
|
14 | "src/**/*"
|
15 | ],
|
16 | "exclude": [
|
17 | "node_modules"
|
18 | ]
|
19 | }
|