forked from TerriaJS/terriajs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig-node.json
46 lines (46 loc) · 1.26 KB
/
tsconfig-node.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
44
45
46
// This tsconfig is used to build the model layer only for use in a node.js app.
// Build with ./node_modules/.bin/tsc -p tsconfig-models.json
{
"compilerOptions": {
"target": "es2019",
"experimentalDecorators": true,
"module": "esNext",
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"allowJs": true,
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"resolveJsonModule": true,
// "composite": true,
// "declaration": true,
"typeRoots": [
"./lib/ThirdParty",
//"./node_modules/@types",
//"../node_modules/@types"
],
"types": [
"terriajs-cesium",
"mapbox__geojson-merge",
"mapbox__point-geometry",
"mapbox__vector-tile",
"pmtiles",
"terriajs-html2canvas",
"urijs",
"styled-components", // eventually it will be required anyway for SSR.
//"react"
]
},
"include": [
"./lib/Core/**/*",
"./lib/Models/**/*",
"./lib/Map/**/*",
"./lib/ModelMixins/**/*",
"./lib/Traits/**/*",
"./lib/Language/**/*",
"./lib/ReactViews/**/*",
"./lib/ThirdParty/**/*"
]
}