Alex abbd1e9649 Updated chat mod examples based on latest release and added an example for the abstract bot example (#23)
Co-authored-by: clodan <clodan@clodan.com>
Reviewed-on: #23
Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com>
Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
2024-01-17 22:26:44 +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/**/*"
]
}