We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e497404 commit 50cdd80Copy full SHA for 50cdd80
custom/tsconfig.json
@@ -1,20 +1,30 @@
1
{
2
"compilerOptions": {
3
"baseUrl": ".", // This should point to your project root
4
- "esModuleInterop": true,
5
"paths": {
6
"@/*": [
7
// "node_modules/adminforth/dist/spa/src/*"
8
- "../../../spa/src/*"
+ "../../../adminforth/spa/src/*"
9
],
10
"*": [
11
// "node_modules/adminforth/dist/spa/node_modules/*"
12
- "../../../spa/node_modules/*"
+ "../../../adminforth/spa/node_modules/*"
13
14
"@@/*": [
15
16
"."
17
]
18
}
19
- }
+ },
+ "include": [
20
+ "./**/*.ts",
21
+ "./**/*.tsx",
22
+ "./**/*.vue",
23
+ "../**/*.ts",
24
+ "../**/*.tsx",
25
+ "../**/*.vue",
26
+ "../*.vue",
27
+ "../*.ts",
28
+ "../*.tsx"
29
+ ]
30
0 commit comments