24 lines
541 B
JSON
Raw Normal View History

2022-05-24 09:42:05 +01:00
{
"compilerOptions": {
"allowJs": true,
"module": "NodeNext",
2023-10-15 15:58:34 +01:00
"target": "ES2022",
"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/*"
],
},
2022-05-24 09:42:05 +01:00
},
2024-07-06 22:02:33 +01:00
"exclude": [
"node_modules",
"dist",
"tmp"
],
}