UNPKG

snazzy-crawler

Version:

A snazzy light Node.js image crawler laced with TypeScript goodness! 🕵️🦾

22 lines (20 loc) 1.16 kB
{ "compilerOptions": { "target": "ES2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, "module": "NodeNext" /* Specify what module code is generated. */, "moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */, // "allowImportingTsExtensions": true /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */, "resolveJsonModule": true /* Enable importing .json files. */, "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, // "noEmit": true, "strict": true /* Enable all strict type-checking options. */, "skipLibCheck": true /* Skip type checking all .d.ts files. */, "outDir": "dist" }, "include": ["src/**/*"], "exclude": ["node_module"], "ts-node": { "esm": true } }