22 lines
516 B
JSON
Raw Normal View History

2022-05-22 16:26:41 +01:00
{
"compilerOptions": {
"allowJs": true,
"module": "CommonJS",
2023-10-15 15:58:34 +01:00
"target": "ES2022",
"moduleResolution": "Node10",
2022-05-22 16:26:41 +01:00
"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-22 16:26:41 +01:00
},
"include": [
"src/*",
"src/**/*"
]
}