This commit is contained in:
Matthias Kretschmann 2020-07-18 04:03:37 +02:00
parent 514bfcd742
commit 12c38b235f
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 3 additions and 4 deletions

View File

@ -3,15 +3,14 @@
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"lib": ["es2015", "dom"],
"lib": ["esnext", "dom"],
"outDir": "dist/cjs",
"jsx": "react",
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"strictNullChecks": false,
"noEmitOnError": true
"strictNullChecks": false
},
"include": ["src/**/*"],
"include": ["./src/@types", "./src/index.ts"],
"exclude": ["node_modules", "dist", "example"]
}