forked from Canadian-Geospatial-Platform/geoview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 856 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": true,
"sourceMap": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowJs": true,
"noEmit": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@public/*": ["./public/*"],
"@config/*": ["./src/api/config/*"]
}
},
"include": ["src"],
"exclude": ["node_modules"]
}