@zeix/ui-element
Version:
UIElement - a HTML-first library for reactive Web Components
34 lines (29 loc) • 802 B
JSON
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Declarations
"declaration": true,
"declarationDir": "./types",
"emitDeclarationOnly": true
},
"include": ["./index.ts", "./index.dev.ts", "./src/**/*.ts"],
"exclude": ["node_modules", "test", "docs", "types/**/*"]
}