diff --git a/tsconfig.app.json b/tsconfig.app.json index f0a23505..66f51d88 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -5,20 +5,33 @@ "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, - - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", - - /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "skipDefaultLibCheck": true, + "allowSyntheticDefaultImports": true, + "noImplicitAny": true, + "strictNullChecks": true, + "baseUrl": "./", + "paths": { + "components/*": ["src/components/*"], + "utils/*": ["src/utils/*"] + } }, - "include": ["src"] + "include": [ + "src" + ], + "exclude": [ + "node_modules", + "build" + ] }