mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
308fa93625
* Configure linters * Move to older eslint config, add stylelint, correct configuration for editorconfig * simplify packages * improve eslint config * Fix typescript * remove line * github workflow * package-lock.json * lint fix * make plugin compatible with Figma * Add stylelint to ci --------- Co-authored-by: Alex Sánchez <alejandro@runroom.com>
14 lines
344 B
JSON
14 lines
344 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react",
|
|
"lib": ["DOM", "ES6"],
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node10",
|
|
"strict": true,
|
|
"typeRoots": ["src/penpot.d.ts", "node_modules/@figma", "node_modules/@types"]
|
|
}
|
|
}
|