2023-06-15 16:34:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-21 06:40:39 +00:00
|
|
|
"outDir": "./lib",
|
2023-06-15 16:34:28 +00:00
|
|
|
"declaration": true,
|
2023-09-21 16:53:34 +00:00
|
|
|
"module": "ES6",
|
2023-09-09 15:49:53 +00:00
|
|
|
"target": "ES6",
|
2023-06-15 16:34:28 +00:00
|
|
|
"lib": [
|
2023-09-27 01:27:34 +00:00
|
|
|
"ESNext"
|
2023-06-15 16:34:28 +00:00
|
|
|
],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
2023-08-11 14:46:43 +00:00
|
|
|
"skipLibCheck": true,
|
2023-08-21 08:17:01 +00:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
2023-08-11 14:46:43 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2023-06-15 16:34:28 +00:00
|
|
|
},
|
2023-08-11 14:46:43 +00:00
|
|
|
|
2023-09-09 15:49:53 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
2023-06-15 16:34:28 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2023-09-21 06:40:39 +00:00
|
|
|
"lib",
|
2023-09-27 01:27:34 +00:00
|
|
|
"dist",
|
|
|
|
"umd"
|
2023-06-15 16:34:28 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|