2022-07-09 16:03:26 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2025-01-05 22:11:18 -05:00
|
|
|
"module": "NodeNext",
|
|
|
|
"target": "ES2022",
|
|
|
|
"moduleResolution": "NodeNext",
|
2022-07-09 16:03:26 -04:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "tmp",
|
|
|
|
"paths": {
|
2025-01-05 22:11:18 -05:00
|
|
|
"@spt/*": ["./types/*"],
|
|
|
|
},
|
2022-07-09 16:03:26 -04:00
|
|
|
},
|
2025-01-05 22:11:18 -05:00
|
|
|
"exclude": ["node_modules", "dist", "tmp"],
|
|
|
|
}
|