Perplexica/tsconfig.json
2024-04-09 16:21:05 +05:30

18 lines
419 B
JSON

{
"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"]
}