2024-08-15 19:47:22 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2024-10-27 11:47:55 +00:00
|
|
|
"lib": [
|
|
|
|
"ES6",
|
|
|
|
"dom"
|
|
|
|
],
|
2024-08-15 19:47:22 +00:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
"outDir": "bin",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-09-15 20:55:08 +00:00
|
|
|
"noImplicitAny": true,
|
2024-08-15 19:47:22 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2024-09-15 20:55:08 +00:00
|
|
|
"src/**/*",
|
2024-10-27 11:47:55 +00:00
|
|
|
"./index.d.ts"
|
2024-08-15 19:47:22 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
2024-10-27 11:47:55 +00:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2024-08-15 19:47:22 +00:00
|
|
|
]
|
|
|
|
}
|