-
Notifications
You must be signed in to change notification settings - Fork 19
/
tsconfig.json
37 lines (36 loc) · 1001 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
36
37
{
"compilerOptions": {
"module": "ES6",
"watch": false,
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"removeComments": true,
"downlevelIteration": true,
"esModuleInterop": true,
"pretty": true,
"strictBindCallApply": false,
"baseUrl": "src/js",
"allowJs": true,
"rootDirs": ["src/js"],
"lib":[
"dom", "es5", "dom.iterable", "es6"
],
//"outFile": "dist/js/rhd.js",
"outDir": "gh-pages/js"
// "paths": {
// "@patternfly/pfelement/pfelement.umd": [
// "@types/patternfly__pfelement"
// ],
// "../@patternfly/pfelement/pfelement": [
// "@types/patternfly__pfelement"
// ]
// }
},
"include": [
"src/js/**/*.js",
"src/js/**/*.ts"
]
}