2019-12-03 15:28:59 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2021-10-19 14:52:57 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true
|
2019-12-03 15:28:59 +00:00
|
|
|
},
|
|
|
|
"exclude": ["__test__", "lib", "node_modules"]
|
|
|
|
}
|