forked from MyCryptoHQ/MyCrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 829 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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "es2015",
"jsx": "react",
"target": "es2015",
"allowJs": true,
"baseUrl": "./common/",
"paths": {
"shared*": ["../shared*"],
"types*": ["../shared/types*"]
},
"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", "./common/", "./electron-app/", "./shared/", "spec"],
"exclude": ["./jest_config/**/*"],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}