diff options
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r-- | frontend/tsconfig.json | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 42c4e3462..ace55124c 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -5,7 +5,7 @@ "lib": ["DOM", "DOM.Iterable", "ESNext"], "strict": true, "allowJs": false, - "skipLibCheck": false, + "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, @@ -14,10 +14,13 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "react-jsx", - "baseUrl": "src", + "jsx": "preserve", + "baseUrl": "./", "incremental": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "paths": { + "@/*": ["./src/*"] + } }, - "include": ["src"] + "include": ["./src"] } |