0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/tsconfig.json

16 lines
389 B
JSON
Raw Normal View History

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