2023-12-25 08:39:37 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2024-05-21 18:07:13 +00:00
|
|
|
"module": "NodeNext",
|
2023-12-25 08:39:37 +00:00
|
|
|
"target": "ES2022",
|
2024-05-21 18:07:13 +00:00
|
|
|
"moduleResolution": "NodeNext",
|
2023-12-25 08:39:37 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "tmp",
|
|
|
|
"paths": {
|
2024-07-06 22:08:05 +01:00
|
|
|
"@spt/*": ["./types/*"],
|
2024-05-21 18:07:13 +00:00
|
|
|
},
|
2023-12-25 08:39:37 +00:00
|
|
|
},
|
2024-05-21 18:07:13 +00:00
|
|
|
"exclude": ["node_modules", "dist", "tmp"],
|
|
|
|
}
|