2022-05-24 09:42:05 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2024-05-21 18:07:13 +00:00
|
|
|
"module": "NodeNext",
|
2023-10-15 15:58:34 +01:00
|
|
|
"target": "ES2022",
|
2024-05-21 18:07:13 +00:00
|
|
|
"moduleResolution": "NodeNext",
|
2022-05-24 09:42:05 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2022-05-28 12:48:58 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "tmp",
|
|
|
|
"paths": {
|
2024-07-06 22:02:33 +01:00
|
|
|
"@spt/*": [
|
|
|
|
"./types/*"
|
|
|
|
],
|
2024-05-21 18:07:13 +00:00
|
|
|
},
|
2022-05-24 09:42:05 +01:00
|
|
|
},
|
2024-07-06 22:02:33 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"tmp"
|
|
|
|
],
|
|
|
|
}
|