0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-18 13:32:28 -05:00
penpot-exporter-figma-plugin/tsconfig.json

16 lines
389 B
JSON
Raw Normal View History

2022-10-11 15:55:08 +02:00
{
"compilerOptions": {
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true,
2024-04-09 09:52:51 +02:00
"jsx": "react-jsx",
"lib": ["DOM", "ES6"],
2024-04-08 11:49:43 +02:00
"target": "es2017",
"module": "ESNext",
"moduleResolution": "Node10",
"strict": true,
2024-04-09 14:20:23 +00:00
"typeRoots": ["src/ui/lib/penpot.d.ts", "node_modules/@figma", "node_modules/@types"],
2024-04-08 17:03:34 +02:00
"resolveJsonModule": true
}
2022-10-11 15:55:08 +02:00
}