2022-08-06 14:17:27 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-08-06 19:09:23 -04:00
|
|
|
"target": "ES2022",
|
2022-08-06 14:17:27 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
2022-08-06 19:09:23 -04:00
|
|
|
"esModuleInterop": true,
|
2022-08-06 14:17:27 -04:00
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": ["node_modules/*"]
|
2022-08-06 19:09:23 -04:00
|
|
|
}
|
2022-08-06 14:17:27 -04:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|