2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-09-09 04:35:28 +07:00
|
|
|
"declaration": true,
|
2021-04-19 08:09:40 +07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
2021-08-23 14:24:39 +07:00
|
|
|
"ES2020"
|
2021-04-19 08:09:40 +07:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"removeComments": true,
|
|
|
|
"rootDir": "./src",
|
2021-05-31 03:59:23 +07:00
|
|
|
"sourceMap": true,
|
2021-04-19 08:09:40 +07:00
|
|
|
"strict": true,
|
2021-08-23 14:24:39 +07:00
|
|
|
"target": "ES2019"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
2021-04-19 08:09:40 +07:00
|
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
2021-09-09 04:35:28 +07:00
|
|
|
}
|