-
Notifications
You must be signed in to change notification settings - Fork 153
/
tsconfig.json
46 lines (46 loc) · 1.24 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"downlevelIteration": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"jsx": "react-jsx",
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": true,
"outDir": ".cache/tsc", // Need output directory for incremental type-checking
"pretty": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2016",
"typeRoots": ["./src/Typings", "./node_modules/@types"],
"types": ["node", "jest", "express", "webpack-env", "google-maps"],
"paths": {
"package.json": ["./package.json"],
"*": ["./*"]
},
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"strict": false,
"strictNullChecks": true
},
"files": ["./src/Utils/Hooks/useAuthIntent/index.tsx"],
"include": ["./jest.envSetup.ts", "./src"],
"exclude": [
"tsconfig.json",
"src/**/__generated__/*.ts",
"src/Server/passport-local-with-otp",
"**/node_modules",
"**/.*/"
]
}