19 lines
482 B
JSON
19 lines
482 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"module": "NodeNext",
|
||
|
"target": "ES2022",
|
||
|
"moduleResolution": "NodeNext",
|
||
|
"esModuleInterop": true,
|
||
|
"downlevelIteration": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"outDir": "tmp",
|
||
|
"paths": {
|
||
|
"@spt/*": ["./types/*"],
|
||
|
},
|
||
|
},
|
||
|
"exclude": ["node_modules", "dist", "tmp"],
|
||
|
}
|