2024-06-13 15:26:08 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2024-06-13 17:04:09 +00:00
|
|
|
"lib": ["DOM", "ES6"],
|
2024-06-13 15:26:08 +00:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
"outDir": "bin",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitAny": true
|
|
|
|
},
|
|
|
|
"include": [
|
2024-06-13 17:04:09 +00:00
|
|
|
"src/**/*"
|
2024-06-13 15:26:08 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|