0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00
penpot-exporter-figma-plugin/ui-src/tsconfig.json

28 lines
781 B
JSON
Raw Permalink Normal View History

2024-04-12 11:52:19 -05:00
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"paths": {
2024-06-26 01:11:57 -05:00
"@common/*": ["./common/*"],
"@ui/*": ["./ui-src/*"],
"react": ["./node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"],
"react-dom/client": ["./node_modules/preact/compat/client"]
},
2024-04-12 11:52:19 -05:00
"allowJs": false,
"skipLibCheck": true,
2024-04-12 11:52:19 -05:00
"esModuleInterop": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"allowSyntheticDefaultImports": true
2024-04-12 11:52:19 -05:00
}
}