starter-kit/tsconfig.json
Martin Pitt 5aa20207b7 Move to PatternFly Elements and lit
PFE uses lit, so it makes sense to just use that for the main
application as well. Web components are pretty much React built into the
web platform, and lit adds some convenience around that.

This is mostly a demo -- for real Cockpit pages, PF Elements is still
missing too many components.
2024-11-19 08:30:09 +01:00

21 lines
345 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"lib": [
"dom",
"es2020"
],
"paths": {
"*": ["./pkg/lib/*"]
},
"moduleResolution": "bundler",
"noEmit": true,
"strict": true,
"target": "es2020"
},
"include": [
"src/**/*"
]
}