|
@@ -1,6 +1,6 @@
|
|
|
{
|
|
|
"compilerOptions": {
|
|
|
- "baseUrl": "./",
|
|
|
+ "baseUrl": "/website",
|
|
|
"target": "esnext",
|
|
|
"module": "esnext",
|
|
|
"moduleResolution": "node",
|
|
@@ -20,12 +20,24 @@
|
|
|
"node"
|
|
|
],
|
|
|
"paths": {
|
|
|
- "@/*": ["src/*"],
|
|
|
- "@common/*": ["src/common/*"],
|
|
|
- "@components/*": ["src/components/*"],
|
|
|
- "@business-components/*": ["src/business-components/*"],
|
|
|
- "@store/*": ["src/store/*"],
|
|
|
- "@views/*": ["src/views/*"],
|
|
|
+ "@/*": [
|
|
|
+ "src/*"
|
|
|
+ ],
|
|
|
+ "@common/*": [
|
|
|
+ "src/common/*"
|
|
|
+ ],
|
|
|
+ "@components/*": [
|
|
|
+ "src/components/*"
|
|
|
+ ],
|
|
|
+ "@business-components/*": [
|
|
|
+ "src/business-components/*"
|
|
|
+ ],
|
|
|
+ "@store/*": [
|
|
|
+ "src/store/*"
|
|
|
+ ],
|
|
|
+ "@views/*": [
|
|
|
+ "src/views/*"
|
|
|
+ ],
|
|
|
}
|
|
|
},
|
|
|
"include": [
|
|
@@ -34,9 +46,10 @@
|
|
|
"src/**/*.tsx",
|
|
|
"src/**/*.vue",
|
|
|
"tests/**/*.ts",
|
|
|
- "tests/**/*.tsx", ],
|
|
|
+ "tests/**/*.tsx",
|
|
|
+ ],
|
|
|
"exclude": [
|
|
|
"node_modules",
|
|
|
"dist"
|
|
|
]
|
|
|
-}
|
|
|
+}
|