-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
61 lines (61 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"compilerOptions": {
"outDir": "dist/",
"module": "commonjs",
"target": "es6",
"lib": ["es5", "es6", "es7", "es2017", "es2019", "dom"],
"sourceMap": true,
"allowJs": false,
"jsx": "preserve",
"moduleResolution": "node",
"baseUrl": "src",
"rootDirs": ["src", "stories"],
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"types": [
"react",
"react-dom",
"styled-jsx",
"node",
"resize-observer-browser",
"jest",
"@testing-library/jest-dom"
],
"strictBindCallApply": true,
"paths": {
"blocks/*": ["../src/blocks/*"],
"board/*": ["../src/board/*"],
"common/*": ["../src/common/*"],
"feeds/*": ["../src/feeds/*"],
"post/*": ["../src/post/*"],
"sidemenu/*": ["../src/sidemenu/*"],
"theme/*": ["../src/theme/*"],
"utils/*": ["../src/utils/*"],
"buttons/*": ["../src/buttons/*"],
"extra/*": ["../src/extra/*"],
"images/*": ["../src/images/*"],
"layout/*": ["../src/layout/*"],
"sidebar/*": ["../src/sidebar/*"],
"tags/*": ["../src/tags/*"],
"thread/*": ["../src/thread/*"],
"user/*": ["../src/user/*"],
"src/*": ["../src/*"],
"stories/*": ["../stories/*"],
"types/*": ["../src/types/*"]
}
},
"files": ["node_modules/jest-extended/types/index.d.ts"],
"include": ["/**/*", "extra-types.d.ts"],
"exclude": ["node_modules", "build", "scripts", "dist"]
}