2019-09-06 05:17:43 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-09-10 03:08:04 +05:30
|
|
|
"declaration": true,
|
2021-04-26 15:12:09 +05:30
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
2022-05-30 07:27:29 +05:30
|
|
|
"ES2021"
|
2021-04-26 15:12:09 +05:30
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"removeComments": true,
|
|
|
|
"rootDir": "./src",
|
2021-05-31 05:21:18 +05:30
|
|
|
"sourceMap": true,
|
2021-04-26 15:12:09 +05:30
|
|
|
"strict": true,
|
2022-05-30 07:27:29 +05:30
|
|
|
"target": "ES2021"
|
2019-09-06 05:17:43 +05:30
|
|
|
},
|
2021-04-26 15:12:09 +05:30
|
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
2019-09-06 05:17:43 +05:30
|
|
|
}
|