1 { 2 "compilerOptions": { 3 "target": "ES2020", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "strict": true, 7 "esModuleInterop": true, 8 "skipLibCheck": true, 9 "declaration": true, 10 "declarationMap": true, 11 "sourceMap": true, 12 "outDir": "dist", 13 "rootDir": "src", 14 "lib": ["ES2020", "DOM"] 15 }, 16 "include": ["src/**/*"], 17 "exclude": ["node_modules", "dist"] 18 } 19