cloudflare/kumo

Public

mirrored fromhttps://github.com/cloudflare/kumoAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
5260f1a5703bb69e6c7f7cf0ce8033a561cac8b5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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