mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-12 23:36:00 +00:00
* support for svg files Support to load svg files and include them as bas64 encoded images in the bundle. * navbar svgs * replace NavBar SVGs with heroicons * layercontrol icons * lint fix * quest - questionmark * plusbutton - plus * linkeditem - elipse-vertical - link-slash * contactinfo - envelope & phone * avatar - arrow-up-tray * ActionButton - link & plus * StartEndView - calendar x2 * HeaderView - ellipse-vertical & pencil & trash * SidebarControl - bars-3 * SearchControl - flag & magnifying-glass * GratitudeControl - heart * FilterControl - funnel * AddButton - plus * reduce test coverage requirements * remove wrongfully commit dummy svg * updated obsolete package.lock * migrate more svgs from code to file, use hero icons where it seems applicable * moved share icons to subfolder * fixed layout --------- Co-authored-by: Anton Tranelis <mail@antontranelis.de>
38 lines
1.3 KiB
JSON
38 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationDir": "dist/types", // 🔹 Muss innerhalb von dist/ liegen
|
|
"emitDeclarationOnly": true, // Nur `.d.ts` generieren, kein JavaScript
|
|
"module": "esnext",
|
|
"target": "ESNext",
|
|
"lib": ["es6", "dom","es2015", "es2016", "es2017", "es2020"],
|
|
"sourceMap": true,
|
|
"allowJs": false,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"#assets/*": ["./src/assets/*"],
|
|
"#components/*": ["./src/Components/*"],
|
|
"#utils/*": ["./src/Utils/*"],
|
|
"#types/*": ["./src/types/*"],
|
|
"#src/*": ["./src/*"],
|
|
"#root/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src", "vite.config.ts", "setupTest.ts", "cypress.config.ts", "cypress/support/commands.ts", "cypress/support/component.ts"],
|
|
"exclude": ["node_modules", "dist", "example", "rollup.config.mjss"],
|
|
"typeRoots": [
|
|
"./src/types",
|
|
"./node_modules/@types/"
|
|
]
|
|
}
|