0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-21 21:23:06 -05:00
penpot-exporter-figma-plugin/ui-src/tsconfig.json
2024-06-26 08:11:57 +02:00

27 lines
781 B
JSON

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