perplexica/tsconfig.json

18 lines
419 B
JSON
Raw Normal View History

2024-04-09 10:51:05 +00:00
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "commonjs",
"target": "ESNext",
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "**/*.spec.ts"]
}