-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.base.json
52 lines (51 loc) · 1.04 KB
/
tsconfig.base.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
{
// "exclude": [
// "node_modules",
// "jest-config.js",
// ],
"compilerOptions": {
// "target": "es6",
// "module": "commonjs",
// "declaration": true,
// "declarationMap": true,
// "strict": true,
// "composite": true,
// "esModuleInterop": true,
// "jsx": "react-jsx",
// "jsxImportSource": "@emotion/react",
"strict": true,
"target": "es6",
"module": "commonjs",
"esModuleInterop": true,
// "rootDir": "src",
"baseUrl": ".",
"allowJs": true,
// "declaration": false,
"declaration": true,
// "declarationMap": true,
"sourceMap": false,
"skipLibCheck": true,
"noEmitOnError": true,
// "experimentalDecorators": true,
// "useDefineForClassFields": true,
"jsx": "react",
},
"include": [
"./src"
],
// "exclude": [
// "lib",
// "**/__tests__",
// ]
"exclude": [
"node_modules",
"lib",
"esm",
"cjs",
"jest-config.js",
"configuration/storybook/main.js",
"lib/**/*",
"esm/**/*",
"cjs/**/*"
],
}