-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 868 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"diagnostics": true,
"inlineSourceMap": false,
"inlineSources": false,
"sourceMap": true,
"moduleResolution": "node",
"stripInternal": true,
"pretty": true,
"rootDirs": ["src", ".storybook"],
"declaration": true,
"declarationDir": "lib",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strictFunctionTypes": true,
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true,
"jsx": "react",
"plugins": [{ "name": "tslint-language-service" }],
"baseUrl": "./packages",
"lib": ["es2017", "dom", "esnext.asynciterable"]
},
"exclude": ["node_modules", "lib"],
"include": ["src/**/*", ".storybook"]
}