2022-05-16 17:31:22 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"module": "CommonJS",
|
|
|
|
"target": "es2020",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2022-05-28 12:48:58 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "tmp",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@spt-aki/*": ["./types/*"]
|
|
|
|
}
|
2022-05-16 17:31:22 +01:00
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"es2020"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src/*",
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|