-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1014 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
31
32
33
34
35
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": true,
"declarationDir": "types",
"emitDeclarationOnly": true,
"declarationMap": true,
"esModuleInterop": true,
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"module": "esnext",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"target": "es5",
"paths": {
"@common/*": ["src/common/*"],
"@components/*": ["src/components/*"],
"@models": ["src/models"],
"types/*": ["src/types/*"]
}
},
"include": ["src/**/*", "rollup.config.js"],
"exclude": ["src/stories/**/*", "src/tests/**/*", "dist"]
}