Perplexica/tsconfig.json

26 lines
483 B
JSON
Raw Normal View History

2024-04-09 16:21:05 +05:30
{
"compilerOptions": {
2024-05-25 08:16:13 -04:00
"lib": [
"ESNext"
],
"module": "Node16",
"moduleResolution": "Node16",
2024-04-09 16:21:05 +05:30
"target": "ESNext",
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
2024-05-25 08:16:13 -04:00
"include": [
"src"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
2024-04-09 16:21:05 +05:30
}