forked from MyCryptoHQ/MyCrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 1 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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "commonjs",
"jsx": "react-jsx",
"target": "es2015",
"allowJs": true,
"baseUrl": "./src",
"paths": {
"test-utils": ["../jest_config/test-utils"],
"@fixtures": ["../jest_config/__fixtures__"],
"@assets/*": ["assets/*"],
"@store": ["services/Store/store"],
"@store/*": ["services/Store/store/*"],
"@*": ["./*"]
},
"lib": ["esnext", "dom"],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"noErrorTruncation": true,
"noImplicitAny": true,
"skipLibCheck": true
},
"include": ["./scripts", "./src/", "spec", "./jest_config"],
"exclude": ["node_modules", "jest_config/__mocks__", "./node-scripts"],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}