2023-09-21 16:53:34 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-11 10:44:59 +00:00
|
|
|
"target": "ES6",
|
2023-09-21 16:53:34 +00:00
|
|
|
"module": "CommonJS",
|
|
|
|
"outDir": "./dist",
|
2023-10-13 02:29:08 +00:00
|
|
|
"declaration": true,
|
2023-09-21 16:53:34 +00:00
|
|
|
"lib": [
|
2023-09-27 01:27:34 +00:00
|
|
|
"ESNext"
|
2023-09-21 16:53:34 +00:00
|
|
|
],
|
2023-10-13 02:29:08 +00:00
|
|
|
"sourceMap": true,
|
2023-09-21 16:53:34 +00:00
|
|
|
"strict": true,
|
|
|
|
"downlevelIteration": true,
|
2023-10-13 02:39:05 +00:00
|
|
|
"removeComments": false,
|
2023-09-21 16:53:34 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"lib",
|
2023-09-27 01:27:34 +00:00
|
|
|
"dist",
|
|
|
|
"umd"
|
2023-09-21 16:53:34 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|