forked from ing-bank/lion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 1008 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": true,
"noImplicitThis": true,
"alwaysStrict": true,
"types": ["node", "mocha", "sinon"],
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true
},
"include": ["packages/**/*.js", "packages-node/**/*.js"],
"exclude": [
"node_modules",
"**/node_modules/*",
"**/coverage/*",
"**/dist/**/*",
"packages/**/test-helpers",
"packages/**/docs/**/*",
"packages/singleton-manager/demo/",
"packages/singleton-manager/test/",
// ignore test/demos for singleton manager until overlays are typed as it's used in there
"packages-node/**/test-helpers",
"packages-node/**/docs/**/*",
"packages-node/babel-plugin-extend-docs/**/*.js",
"packages-node/providence-analytics/**/*.js",
"packages-node/remark-extend/**/*.js"
]
}