-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
35 lines (35 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"importsNotUsedAsValues": "preserve",
"allowUmdGlobalAccess": false,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["ES2015", "ESNext", "esnext.asynciterable", "dom", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true,
"rootDir": ".",
"outDir": "src_dist",
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"noEmitOnError": false,
"paths": {
"~/*": ["./src/*"]
},
"typeRoots": ["node_modules/@types", "src/types", "src/etoroTypes"]
},
"exclude": ["**/__tests__", "**/*.{spec,test}.tsx", "coverage", "dist"]
}