cloudflare/kumo
Publicmirrored fromhttps://github.com/cloudflare/kumoAvailable
packages/kumo-figma/tsconfig.json
20lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2020", |
| 4 | "module": "ES2020", |
| 5 | "lib": ["ES2020"], |
| 6 | "moduleResolution": "bundler", |
| 7 | "strict": true, |
| 8 | "esModuleInterop": true, |
| 9 | "skipLibCheck": true, |
| 10 | "forceConsistentCasingInFileNames": true, |
| 11 | "resolveJsonModule": true, |
| 12 | "types": ["@figma/plugin-typings", "node"], |
| 13 | "baseUrl": ".", |
| 14 | "paths": { |
| 15 | "@cloudflare/kumo/*": ["../kumo/*"] |
| 16 | } |
| 17 | }, |
| 18 | "include": ["src/**/*.ts"], |
| 19 | "exclude": ["node_modules"] |
| 20 | } |
| 21 | |