-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (42 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
{
"exclude": ["node_modules", "webpack*", "webpack/", "dist"],
"compilerOptions": {
"jsx": "react",
"module": "CommonJS",
"moduleResolution": "Node",
"target": "ESNext",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"noImplicitAny": true,
"removeComments": false,
"skipLibCheck": true,
"strict": true,
"plugins": [
{ "transform": "typescript-transform-paths" },
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"outDir": "./dist/",
"rootDir": "./",
"baseUrl": "./",
"paths": {
"@CORE/*": ["core/*"],
"@APP/*": ["app/*"],
"@MODELS/*": ["models/*"],
"@CONTROLLERS/*": ["app/controllers/*"],
"@TYPES/*": ["lib/types/*"],
"@CONFIGS/*": ["configs/*"],
"@Lib/*": ["lib/*"],
"@VueC/*": ["resources/scripts/vue/components/*"],
"@ReactC/*": ["resources/scripts/react/components/*"],
"@Scripts/*": ["resources/scripts/*"],
"@Styles/*": ["resources/styles/*"],
"@Fonts/*": ["resources/fonts/*"],
"@Images/*": ["resources/images/*"],
"@/*": ["./*"]
}
}
}