2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-09-10 04:38:04 +07:00
|
|
|
"declaration": true,
|
2021-04-26 16:42:09 +07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
2022-05-30 08:57:29 +07:00
|
|
|
"ES2021"
|
2021-04-26 16:42:09 +07:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"removeComments": true,
|
|
|
|
"rootDir": "./src",
|
2021-05-31 06:51:18 +07:00
|
|
|
"sourceMap": true,
|
2021-04-26 16:42:09 +07:00
|
|
|
"strict": true,
|
2022-05-30 08:57:29 +07:00
|
|
|
"target": "ES2021"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
2021-04-26 16:42:09 +07:00
|
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
2019-09-06 06:47:43 +07:00
|
|
|
}
|