forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 842 Bytes
/
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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": false,
"noImplicitThis": true,
"alwaysStrict": true,
"types": ["node", "mocha"],
"esModuleInterop": true,
},
"files": [
"browser.d.ts"
],
"include": [
"packages"
],
"exclude": [
"node_modules",
"**/node_modules/*",
"**/coverage/*",
"packages/create/src/generators/*/templates/**/*",
"packages/webpack-index-html-plugin/demo/**/*",
"packages/building-utils/test/custom-polyfils/**/*",
"**/dist/**/*",
"packages/**/test/**/snapshots",
"packages/es-dev-server/test/fixtures/**/*",
"packages/karma-esm/demo/**/*",
"packages/es-dev-server/demo/**/*"
]
}