| 1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "CommonJS",
- "moduleResolution": "node",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "strict": true,
- "outDir": "./dist",
- "lib": ["ES2020"],
- "baseUrl": ".",
- "paths": {
- "@/*": ["./*"]
- },
- "resolveJsonModule": true
- },
- "include": ["scripts/ExportToAi/**/*"],
- "exclude": ["node_modules"]
- }
|