forked from marudor/bahn.expert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 989 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": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"jsx": "preserve",
"lib": ["es6", "dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": false,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "esnext",
"emitDecoratorMetadata": false,
"resolveJsonModule": true,
"baseUrl": "src",
"paths": {
"shared/*": ["shared/*.web.ts", "shared/*/index.web.ts", "shared/*"],
"Routing/*": ["client/Routing/*"],
"Abfahrten/*": ["client/Abfahrten/*"],
"Common/*": ["client/Common/*"],
"Test/*": ["../test/*"],
"testHelper": ["../test/testHelper"],
"types/*": ["types/*"]
},
"types": ["jest", "@testing-library/jest-dom"]
},
"include": ["src", "test", "@types"]
}