## Changes - Reverts changes introduced in #1407 that incorrectly changed attribute casing - Patches `@shoelace-style/shoelace` using [`patch-package`](https://www.npmjs.com/package/patch-package) to add JSDoc comments to component typedefs so that `lit-analyzer` can properly pick up attributes - Adds component typedef for `<replay-web-page>` component ## Testing Tested by hand, it looks like missing help text/date formatting changes/etc are back! Before | After -|-  |   |   |  --------- Co-authored-by: Ilya Kreymer <ikreymer@users.noreply.github.com>
35 lines
752 B
JSON
35 lines
752 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"skipLibCheck": true,
|
|
"plugins": [
|
|
{
|
|
"name": "ts-lit-plugin",
|
|
"strict": true,
|
|
"rules": {
|
|
"no-missing-import": "off"
|
|
},
|
|
"maxNodeModuleImportDepth": -1
|
|
}
|
|
],
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"~assets/*": ["./src/assets/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|