/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "allowSyntheticDefaultImports": true, 4 "declaration": true, 5 "declarationMap": true, 6 "emitDeclarationOnly": true, 7 "esModuleInterop": true, 8 "lib": ["ES2022", "WebWorker"], 9 "module": "nodenext", 10 "moduleResolution": "nodenext", 11 "outDir": "dist", 12 "resolveJsonModule": true, 13 "rootDir": ".", 14 "strict": true, 15 "target": "ES2022", 16 "useUnknownInCatchVariables": false, 17 }, 18 "include": [ 19 "**/*.ts" 20 ], 21 "exclude": [ 22 "dist", 23 "test/playwright", 24 "test/vitest", 25 "scripts/", 26 "uds-docs" 27 ] 28 }