material-web/tsconfig.json
Elliott Marquez 9f3e55d79a docs: auto-generate API docs
Updates API docs in our markdown files with Lit Analyzer by manually running `npm run update-docs`

COPYBARA_INTEGRATE_REVIEW=https://github.com/material-components/material-web/pull/4946 from material-components:api-docs 1322ca962041a4b1f30ef7ad3ef2c7eb9087f42b
PiperOrigin-RevId: 566834596
2023-09-19 21:05:47 -07:00

35 lines
802 B
JSON

{
"compilerOptions": {
"allowUnreachableCode": false,
"baseUrl": ".",
"declaration": true,
"declarationMap": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"importHelpers": true,
"module": "es2015",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"paths": {
"@material/web/*": ["./*"]
},
"sourceMap": true,
"inlineSources": true,
"strict": true,
"strictNullChecks": false,
"target": "es2020",
"types": ["lit", "jasmine"]
},
"exclude": [
"catalog",
"**/demo",
"scripts/"
]
}