forked from material-components/material-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
63 lines (63 loc) · 1.76 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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"}
]
}