| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "strict": true,
- "skipLibCheck": true,
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
- "types": [
- "vite/client"
- ],
- "jsx": "react-jsx",
- "jsxImportSource": "react",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true
- },
- "include": ["src"],
- "exclude": ["node_modules"]
- }
|