/ duper-js-wasm / tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ES2020", 4 "module": "ESNext", 5 "moduleResolution": "node", 6 "lib": ["ES2020", "DOM"], 7 "outDir": "dist", 8 "rootDir": "src", 9 "strict": true, 10 "esModuleInterop": true, 11 "skipLibCheck": true, 12 "forceConsistentCasingInFileNames": true, 13 "declaration": true, 14 "emitDeclarationOnly": true, 15 "sourceMap": true 16 }, 17 "include": ["src/**/*"], 18 "exclude": ["src/index.web.ts", "examples", "tests", "dist", "node_modules"] 19 }