blob: 810eb41d5d865928484a68b339a6ef52c8e3c712 [file] [log] [blame]
Earl Lee2e463fb2025-04-17 11:22:22 -07001{
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "ESNext",
5 "moduleResolution": "node",
6 "esModuleInterop": true,
7 "strict": false,
8 "sourceMap": true,
9 "outDir": "./dist",
10 "declaration": true,
11 "lib": ["DOM", "ES2020"],
12 "skipLibCheck": true,
13 "noImplicitAny": false
14 },
15 "include": ["src/**/*"],
16 "exclude": ["node_modules", "dist"]
17}