tsconfig.json

 1{
 2    "compilerOptions": {
 3        "target": "es2015",
 4        "module": "commonjs",
 5        "esModuleInterop": true,
 6        "noImplicitAny": true,
 7        "removeComments": true,
 8        "preserveConstEnums": true,
 9        "sourceMap": true,
10        "noEmit": true,
11        "forceConsistentCasingInFileNames": true,
12        "declaration": true,
13        "strict": true,
14        "strictNullChecks": true,
15        "noImplicitThis": true,
16        "alwaysStrict": true,
17        "noUnusedLocals": false,
18        "noUnusedParameters": false,
19        "noImplicitReturns": true,
20        "noFallthroughCasesInSwitch": false,
21        "experimentalDecorators": true,
22        "strictPropertyInitialization": false,
23        "skipLibCheck": true,
24        "useUnknownInCatchVariables": false,
25        "baseUrl": ".",
26        "paths": {
27            "@/*": [
28                "./*"
29            ],
30            "@element/*": [
31                "./src/element/*"
32            ],
33            "@component/*": [
34                "./src/component/*"
35            ],
36            "@styleTree/*": [
37                "./src/styleTree/*"
38            ],
39            "@theme/*": [
40                "./src/theme/*"
41            ],
42            "@types/*": [
43                "./src/util/*"
44            ],
45            "@themes/*": [
46                "./src/themes/*"
47            ],
48            "@util/*": [
49                "./src/util/*"
50            ]
51        }
52    },
53    "exclude": [
54        "node_modules"
55    ]
56}