forked from marudor/bahn.expert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 881 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
{
"exclude": ["cypress"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": false,
"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,
// "strictPropertyInitialization": false,
// "noImplicitAny": false,
"target": "esnext",
"emitDecoratorMetadata": false,
"resolveJsonModule": true,
"baseUrl": "src",
"paths": {
"Routing/*": ["client/Routing/*"],
"Abfahrten/*": ["client/Abfahrten/*"],
"Common/*": ["client/Common/*"],
"Test/*": ["../test/*"],
"testHelper": ["../test/client/testHelper"]
}
}
}