UNPKG

atomico

Version:

Atomico is a small library for the creation of interfaces based on web-components, only using functions and hooks.

30 lines (29 loc) 941 B
{ "include": ["src/**/*", "types/**/*"], // "exclude": ["src/**/tests/","tests/"], "compilerOptions": { "strict": false, "noUnusedLocals": true, "jsx": "react-jsx", "checkJs": true, "jsxImportSource": "../", "target": "ESNext", "module": "NodeNext", "moduleResolution": "NodeNext", "allowSyntheticDefaultImports": true, "allowJs": true, "declaration": true, "noEmit": true, "lib": ["ESNext", "DOM", "DOM.Iterable"], "paths": { "core": ["./types/core.d.ts"], "hooks": ["./types/hooks.d.ts"], "dom": ["./types/dom.d.ts"], "component": ["./types/component.d.ts"], "context": ["./types/context.d.ts"], "vnode": ["./types/vnode.d.ts"], "schema": ["./types/schema.d.ts"], "internal/*": ["./types/internal/*"] } } }