| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1 | { |
| 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 | } | ||||