-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [FE] μ μΆ μ»΄ν¬λνΈ UI μμ νλ€. (#632) [FE] μ μΆ μ»΄ν¬λνΈ UI μμ * [FE] νμ μ€ν¬λ¦½νΈ μ΅μ μ νλ‘μ νΈμ λ§κ² μμ νλ€. (#635) * feat: tsconfig μ΅μ λ³κ²½ * feat: λλ½λ μ΅μ μΆκ° * [FE] μλμ΄ μμ΄μ μΉμμΌ μ°κ²°μ΄ μ’ λ£λμμλ, μ¬μ°κ²°μ ν μ μλλ‘ νλ€. (#637) feat: reconnect_delayλ₯Ό 1μ΄λ‘ μ€μ νλ€.
- Loading branch information
1 parent
3fb989d
commit 4c526fb
Showing
5 changed files
with
14 additions
and
22 deletions.
There are no files selected for viewing
Submodule frontend-security
updated
from dc5dc9 to b7c008
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2016", | ||
"composite": true, | ||
"composite": false, | ||
"jsx": "react-jsx", | ||
"jsxImportSource": "@emotion/react", | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"allowJs": true, | ||
"noEmit": true, | ||
"isolatedModules": true, | ||
"allowSyntheticDefaultImports": true, | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"strictNullChecks": true, | ||
"noImplicitThis": true, | ||
"useUnknownInCatchVariables": true, | ||
"exactOptionalPropertyTypes": true, | ||
"noImplicitReturns": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"allowUnreachableCode": false, | ||
"skipLibCheck": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["src/*"] | ||
}, | ||
"types": ["cypress", "node"] | ||
} | ||
}, | ||
"include": ["src", "cypress"], | ||
"exclude": ["**/*.cy.ts"] | ||
"include": ["src"] | ||
} |