forked from maptalks/maptalks.three
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 825 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": {
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
// "noImplicitAny": true,
"declaration": true,
"allowJs": false,
"module": "ES2015",
"target": "es6",
"sourceMap": true,
//dependencies lib version
"lib": [
"es5",
"es2015",
"dom"
],
"outDir": "./dist",
"baseUrl": "./",
//custom types
"paths": {
"maptalks": [
"./types/maptalks/index.d.ts"
],
"deyihu-geometry-extrude": [
"./types/deyihu-geometry-extrude/index.d.ts"
]
}
},
"include": [
"./src/**/*"
]
}