-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.client.json
35 lines (35 loc) · 1.06 KB
/
tsconfig.client.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": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"importHelpers": true,
"module": "esnext",
"moduleResolution": "node",
"noResolve": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"outDir": "./static/build",
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2019",
"reactNamespace": "React",
"declaration": false,
"sourceMap": true,
"jsx": "react",
"lib": ["dom", "es2016", "es2017.object", "es2017.string"],
"baseUrl": "./src/",
"paths": {
"@redux/*": ["client/redux/*"],
"@navigation/*": ["client/navigation/*"],
"@util/*": ["client/util/*"],
"@model/*": ["client/model/*"]
}
},
"files": ["src/client/index.tsx"],
"exclude": ["node_modules"]
}