24 lines
541 B
JSON
24 lines
541 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"
|
|
],
|
|
} |