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

16 lines
381 B
JSON
Raw Normal View History

2022-10-11 08:55:08 -05:00
{
"compilerOptions": {
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true,
2022-10-11 08:55:08 -05:00
"jsx": "react",
"lib": ["DOM", "ES6"],
2024-04-08 04:49:43 -05:00
"target": "es2017",
"module": "ESNext",
"moduleResolution": "Node10",
"strict": true,
2024-04-08 11:04:11 -05:00
"typeRoots": ["src/ui/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
}