Alex ac6418feda Added chatbot examples (#22)
Co-authored-by: clodan <clodan@clodan.com>
Reviewed-on: #22
Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com>
Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
2023-12-25 08:39:37 +00:00

22 lines
516 B
JSON

{
"compilerOptions": {
"allowJs": true,
"module": "CommonJS",
"target": "ES2022",
"moduleResolution": "Node10",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"baseUrl": ".",
"paths": {
"@spt-aki/*": ["./types/*"]
}
},
"include": [
"src/*",
"src/**/*"
]
}