forked from camptocamp/ngeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.27 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
{
"compilerOptions": {
"pretty": false,
/* Basic Options */
"target": "ES6",
"module": "system",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"baseUrl": "./",
"paths": {
"ngeo/*": ["src/*"],
"gmf/*": ["contribs/gmf/src/*"],
"ol/*": ["node_modules/ol/src/*"],
"olcs/*": ["node_modules/ol-cesium/src/olcs/*"],
"@geoblocks/proj/*": ["node_modules/@geoblocks/proj/*"],
"moment": ["node_modules/moment/moment.d.ts"],
"jsts/*": ["node_modules/@types/jsts/index.d.ts"],
"localforage/*": ["node_modules/localforage/*"],
"resize-observer-polyfill": ["node_modules/resize-observer-polyfill/src/index.d.ts"],
"qruri": ["node_modules/qruri/index.js"],
}
},
"include": [
"src/**/*.js",
"api/src/**/*.js",
"contribs/gmf/src/**/*.js",
"contribs/gmf/apps/**/*.js",
"test/spec/**/*.js",
"contribs/gmf/test/spec/**/*.js",
"examples/*.js",
"contribs/gmf/examples/*.js",
],
"files": [
"types/dom.d.ts",
]
}