+1
-1
public/index.tsx
+1
-1
public/index.tsx
+1
-1
public/layouts/index.tsx
+1
-1
public/layouts/index.tsx
+1
-1
public/libs/api.ts
+1
-1
public/libs/api.ts
+7
-1
tsconfig.json
+7
-1
tsconfig.json
···
100
100
101
101
/* Completeness */
102
102
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
103
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
103
+
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
104
+
"baseUrl": ".",
105
+
"paths": {
106
+
"@server": ["./src/index.ts"],
107
+
"@server/*": ["./src/*"],
108
+
"@public/*": ["./public/*"]
109
+
}
104
110
}
105
111
}