{ "compilerOptions": { "target": "es2020", "module": "commonjs", "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "checkJs": false, "strict": false, "noImplicitAny": false, "noImplicitThis": true, "alwaysStrict": true, "strictBindCallApply": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "jsx": "react-jsx", "baseUrl": "./src", "paths": { "@Base/*": ["base/*"], "@Components/*": ["components/*"], "@Reducers/*": ["reducers/*"], "@API/*": ["api/*"], "@Tools/*": ["tools/*"], "@Hooks/*": ["hooks/*"], "@Models/*": ["models/*"], "@CSS/*": ["css/*"], "@Services/*": ["services/*"], "@Providers/*": ["providers/*"], "@Env/*": ["env/*"], "@Langs/*": ["langs/*"], "@Mocks/*": ["mocks/*"], "@Plugin/*": ["plugin/*"] } }, "include": [ "src", ] }