tangled
alpha
login
or
join now
vielle.dev
/
site
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Add root path alias
vielle.dev
5 months ago
4400a4ac
d024ac9a
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
options
unified
split
Changed files
+6
-1
tsconfig.json
+6
-1
tsconfig.json
···
1
1
{
2
2
"extends": "astro/tsconfigs/strict",
3
3
"include": [".astro/types.d.ts", "**/*"],
4
4
-
"exclude": ["dist"]
4
4
+
"exclude": ["dist"],
5
5
+
"compilerOptions": {
6
6
+
"paths": {
7
7
+
"/*": ["./src/*"]
8
8
+
}
9
9
+
}
5
10
}