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