-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.28 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
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/",
"target": "es2018",
"sourceMap": true,
"declaration": true,
"strict": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"alwaysStrict": false,
"allowJs": false,
"jsx": "react",
"lib": ["esnext", "dom"],
"typeRoots": ["./types", "./node_modules/@types", "./typings"],
"paths": {
"@sb/*": ["src/storybook/src/web/*"],
"@core/*": ["src/core/src/*"],
"@routes/*": ["src/routes/*"],
"@utils/*": ["src/utils/*"],
"@icons/*": ["src/storybook/src/icons/*"],
"@storage": ["src/utils/storage"],
"buffer": ["src/utils/buffer"],
"@nodemodules": ["node_modules"],
"@webhooks/*": ["src/storybook/src/webhooks/*"],
"@variables/*": ["src/storybook/src/variables/*"]
},
"plugins": [
{
"name": "typescript-styled-plugin"
},
{
"name": "ts-graphql-plugin",
"tag": "gql"
}
]
},
"include": ["src", "typings", "custom.d.ts"],
"exclude": ["node_modules", "typings", "types"]
}