ScavXpCounts/tsconfig.json

19 lines
503 B
JSON
Raw Normal View History

2023-08-17 19:49:16 -06:00
{
"compilerOptions": {
"allowJs": true,
2024-11-12 11:51:30 -07:00
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "NodeNext",
2023-08-17 19:49:16 -06:00
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"baseUrl": ".",
"paths": {
2024-11-12 11:51:30 -07:00
"@spt/*": ["./types/*"]
2023-08-17 19:49:16 -06:00
}
},
2024-11-12 11:51:30 -07:00
"exclude": ["node_modules", "dist", "tmp"],
2023-08-17 19:49:16 -06:00
}