forked from TerriaJS/terriajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 972 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
{
"compilerOptions": {
"target": "es2019",
"experimentalDecorators": true,
"module": "esNext",
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"allowJs": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true, // required for mobx6 - https://mobx.js.org/installation.html#use-spec-compliant-transpilation-for-class-properties
"outDir": "ts-out",
"resolveJsonModule": true,
"typeRoots": [
"./lib/ThirdParty/",
"./node_modules/",
"./node_modules/@types/",
"../node_modules/",
"../node_modules/@types/",
"../../node_modules/",
"../../node_modules/@types/",
"../../../node_modules/",
"../../../node_modules/@types/"
],
"types": ["terriajs-cesium"]
},
"include": [
"./lib/**/*",
"./test/**/*",
"./buildprocess/generateDocs.ts",
"./buildprocess/**/*"
]
}