diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index aa12532..a55c1fe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,16 @@ "strict": true, "noImplicitAny": false, "target": "ESNEXT", - "jsx": "preserve" + "jsx": "preserve", + + "baseUrl": "./src/", + "paths": { + "@webpack": ["./webpack"], + "@webpack/common": ["./webpack/common"], + "@utils/*": ["./utils/*"], + "@api/*": ["./api/*"], + "@components/*": ["./components/*"] + } }, "include": ["src/**/*"] } |