blob: 8b79a514cb575261cf764263c6829590af4e23e5 [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,
Sean McCullough86b56862025-04-18 13:04:03 -07007 "experimentalDecorators": true,
Earl Lee2e463fb2025-04-17 11:22:22 -07008 "strict": false,
9 "sourceMap": true,
10 "outDir": "./dist",
11 "declaration": true,
12 "lib": ["DOM", "ES2020"],
13 "skipLibCheck": true,
14 "noImplicitAny": false
15 },
Sean McCullough86b56862025-04-18 13:04:03 -070016 "include": ["src/**/*", "web-dev-server.config.mjs"],
Earl Lee2e463fb2025-04-17 11:22:22 -070017 "exclude": ["node_modules", "dist"]
18}