19 lines
482 B
JSON
Raw Permalink Normal View History

2022-07-02 16:55:17 +01:00
{
"compilerOptions": {
"allowJs": true,
"module": "NodeNext",
2023-10-15 15:58:34 +01:00
"target": "ES2022",
"moduleResolution": "NodeNext",
2022-07-02 16:55:17 +01:00
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"paths": {
2024-07-06 22:08:05 +01:00
"@spt/*": ["./types/*"],
},
2022-07-02 16:55:17 +01:00
},
"exclude": ["node_modules", "dist", "tmp"],
}