Skip to content

Commit

Permalink
chore: add tsconfig for lit components
Browse files Browse the repository at this point in the history
  • Loading branch information
jtiala committed Sep 30, 2023
1 parent e4d5490 commit c5ad2da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/typescript-config/vite-lit.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./base.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"noEmit": true,
"plugins": [
{
"name": "ts-lit-plugin"
}
],
"sourceMap": true,
"target": "ES2019"
}
}

0 comments on commit c5ad2da

Please sign in to comment.