the-blacklist/tsconfig.json

19 lines
482 B
JSON
Raw Normal View History

2023-01-21 16:20:00 +11:00
{
"compilerOptions": {
"allowJs": true,
2024-07-15 20:25:07 +02:00
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "NodeNext",
2023-01-21 16:20:00 +11:00
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"paths": {
2024-07-15 20:25:07 +02:00
"@spt/*": ["./types/*"],
},
2023-01-21 16:20:00 +11:00
},
2024-07-15 20:25:07 +02:00
"exclude": ["node_modules", "dist", "tmp"],
}