diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 94473c9..4687b90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,20 @@ { "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": [ + "./src/*" + ] + }, "target": "ESNext", - "lib": ["DOM", "DOM.Iterable", "ESNext"], - "types": ["vite/client"], + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "types": [ + "vite/client" + ], "allowJs": false, "skipLibCheck": true, "esModuleInterop": false, @@ -16,5 +28,7 @@ "noEmit": true, "jsx": "react" }, - "include": ["./src"] + "include": [ + "./src" + ] } |
