-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.01 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
"@themes/*": ["themes/*"],
},
"outDir": "./dist",
"module": "ES2015",
"moduleResolution": "node",
"lib": ["dom", "esnext"],
"jsx": "react",
"declaration": true,
"esModuleInterop": true,
"allowJs": true,
"plugins": [
{
"transform": "@zerollup/ts-transform-paths",
"exclude": ["*"]
}
],
"types": ["webpack-env", "jest", "@testing-library/jest-dom", "node"],
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
},
"include": [
"src/components/**/*",
"src/index.ts",
"themes/cerveza/index.ts",
"themes/cerveza-dark/index.ts",
".eslintrc.js"
],
"exclude": ["node_modules", "build", "scripts"]
}