feat: add path for root in tsconfig

This commit is contained in:
p-sw 2024-05-19 12:12:55 +09:00
parent 5586a4f28a
commit e1dc1dab32

View File

@ -18,7 +18,11 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./*"]
}
},
"include": ["components", "stories", "./stories.ts", "src"],
"references": [{ "path": "./tsconfig.node.json" }]