19 lines
490 B
JSON
Raw Normal View History

{
"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",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"paths": {
2024-05-18 21:29:19 +01:00
"@spt-aki/*": [ "./types/*" ],
},
},
2024-05-18 21:29:19 +01:00
"exclude": [ "node_modules", "dist", "tmp" ],
}