mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 02:59:13 +00:00
* initial attempt at not auto defining * add files with - * continued work on removing auto-define * fix component definitions * update with new tag stuff * fix lots of things * fix improper scoped elements * working through side effects * continued react wrapper work * update changelog * formatting * fixes * update changelog * lint / formatting * fix version injection * fix version injection, work on test * fix version injection, work on test * fix merge conflicts * fix jsdoc null issue * fix templates * use exports * working on tests * working on registration mocking * fix customElements test * linting * fix some test stuff * clean up test * clean up comment * rename scopedElements to dependencies * linting / formatting * linting / formatting * mark all packages external and still bundle * set bundle false * set bundle true * dont minify * fix merge conflicts * use built shoelace-element * fix lint errors * prettier * appease eslint * appease eslint gods * appease eslint gods * appease eslint gods * appease eslint gods * add shoelace-autoloader * move it all into 1 function * add exportmaps note * prettier * add jsdelivr entrypoint * read as utf8 * update docs with .component.js importS * prettier
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
/* This is the "dev" TS Config which includes typechecking for test. This is used by ESLint to provide TypeScript errors for test files */
|
|
{
|
|
"compilerOptions": {
|
|
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
|
"target": "es2017",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"dom",
|
|
"dom.Iterable",
|
|
"es2020"
|
|
],
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"strictFunctionTypes": false,
|
|
"noImplicitThis": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false, /* See https://lit.dev/docs/components/properties/#avoiding-issues-with-class-fields */
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"mocha",
|
|
"user-agent-data-types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|