16 lines
384 B
JSON
16 lines
384 B
JSON
{
|
|
"extends": ["@tsconfig/node18"],
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"noUnusedLocals": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": ["node_modules", "public/**/*"]
|
|
}
|