material-web/tsconfig.json
Daniel Freedman d0b2419c62 fix typescript compilation
- Remove reference to notched outline from list
- Also add all packages as references in the top tsconfig for simpler
  building
2020-01-31 19:55:28 -08:00

64 lines
1.8 KiB
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "es2015",
"moduleResolution": "node",
"lib": ["es2017", "dom", "dom.iterable"],
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"outDir": "./",
"baseUrl": "./packages",
"paths": {
"@material/mwc-*": ["./*/src"]
},
"composite": true,
"importHelpers": true
},
"include": [
"custom_typings/**/*.ts",
"src/*.ts"
],
"exclude": [],
"references": [
{"path": "packages/base"},
{"path": "packages/button"},
{"path": "packages/checkbox"},
{"path": "packages/dialog"},
{"path": "packages/drawer"},
{"path": "packages/fab"},
{"path": "packages/floating-label"},
{"path": "packages/formfield"},
{"path": "packages/icon"},
{"path": "packages/icon-button"},
{"path": "packages/icon-button-toggle"},
{"path": "packages/line-ripple"},
{"path": "packages/linear-progress"},
{"path": "packages/list"},
{"path": "packages/menu"},
{"path": "packages/notched-outline"},
{"path": "packages/radio"},
{"path": "packages/ripple"},
{"path": "packages/select"},
{"path": "packages/slider"},
{"path": "packages/snackbar"},
{"path": "packages/switch"},
{"path": "packages/tab"},
{"path": "packages/tab-bar"},
{"path": "packages/tab-indicator"},
{"path": "packages/tab-scroller"},
{"path": "packages/textarea"},
{"path": "packages/textfield"},
{"path": "packages/top-app-bar"},
{"path": "packages/top-app-bar-fixed"}
]
}