Skip to content

Commit

Permalink
Merge branch 'develop' into fix/709-readme-optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
davidken91 authored Feb 28, 2024
2 parents e7914f6 + 13c270b commit c54a4e7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@
"node_modules": false,
"package-lock.json": true
},
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"lit-plugin.rules.no-missing-import": "off",
"lit-plugin.strict": true
}
11 changes: 10 additions & 1 deletion packages/ui-library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@
"experimentalDecorators": true,
"skipLibCheck": true,
"strict": true,
"useDefineForClassFields": false
"useDefineForClassFields": false,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true,
"rules": {
"no-missing-import": "off"
}
}
]
},
"include": ["src"],
"exclude": ["src/**/*.test.ts", "src/**/*.stories.ts"]
Expand Down

0 comments on commit c54a4e7

Please sign in to comment.