| 12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "incremental": true,
- "strict": true,
- "skipLibCheck": true,
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
- "types": [
- "vite/client"
- ],
- "jsx": "react-jsx",
- "jsxImportSource": "react",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["src/*"]
- },
- },
- "include": ["src/**/*.ts", "src/**/*.tsx"],
- "exclude": ["node_modules"]
- }
|