-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
49 lines (49 loc) · 1.29 KB
/
Copy pathtsconfig.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
47
48
49
{
"compilerOptions": {
"outDir": "dist/",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
"noImplicitAny": false,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitHelpers": true,
"jsx": "react",
"lib": ["dom", "es2017"],
"target": "es2017",
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"consts": ["src/consts"],
"components/*": ["src/components/*"],
"shared/*": ["src/shared/*"],
"ui": ["src/ui"],
"modules": ["src/modules"],
"testing/*": ["src/testing/*"],
"utils": ["src/utils"],
"services*": ["src/services/*"],
"styles": ["src/styles"],
},
"plugins": [
{
"name": "typescript-tslint-plugin",
"configFile": "../tslint.json"
}
]
},
"include": ["src", "typings", "config/setup.jest.ts"],
"exclude": ["node_modules", "**/*.test.ts"]
}