19 lines
486 B
JSON
Raw Normal View History

2022-06-03 22:24:46 +01:00
{
"compilerOptions": {
"allowJs": true,
2024-05-18 21:29:19 +01:00
"module": "NodeNext",
2023-10-15 15:58:34 +01:00
"target": "ES2022",
2024-05-18 21:29:19 +01:00
"moduleResolution": "NodeNext",
2022-06-03 22:24:46 +01:00
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"paths": {
"@spt-aki/*": ["./types/*"],
2024-05-18 21:29:19 +01:00
},
2022-06-03 22:24:46 +01:00
},
"exclude": ["node_modules", "dist", "tmp"],
}