scrapper-tools
Version:
Modern way to scrape modern websites
31 lines (27 loc) • 722 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"declaration": false,
"declarationMap": false,
"inlineSourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"noEmit": false,
"downlevelIteration": true,
"strict": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"files": ["./src/index.ts"],
"exclude": ["node_modules"]
}