generated from arnofiva/arcgis-js-api-webpack-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
40 lines (40 loc) · 840 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
38
39
40
{
"compilerOptions": {
"target": "es5",
"module": "amd",
"lib": [
"dom",
"es5",
"es6"
],
"noEmitHelpers": true,
"noEmitOnError": true,
"strictPropertyInitialization": false,
"jsx": "react",
"jsxFactory": "tsx",
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"moduleResolution": "node",
"types": [
"arcgis-js-api"
],
"esModuleInterop": true,
"experimentalDecorators": true,
"inlineSourceMap": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "dist/js",
"importHelpers": true,
},
"include": [
"./src/**/*",
"node_modules/arcgis-js-api/**/*",
],
"exclude": [
"node_modules"
]
}