| 1234567891011121314151617 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "lib": ["ESNext", "DOM"],
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "moduleResolution": "bundler",
- "sourceMap": true,
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules"],
- }
|