Perplexica/tsconfig.json
2024-05-25 08:18:58 -04:00

25 lines
483 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "Node16",
"moduleResolution": "Node16",
"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"
]
}