| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "CommonJS",
- "moduleResolution": "node",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "allowJs": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true,
- "declaration": true,
- "outDir": "./dist",
- "rootDir": "./src",
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"],
- "@types/*": ["./src/types/*"]
- }
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules", "dist"]
- }
|