1
0
forked from baron/baron-sso

common/ui/table 기준 테이블 스타일 공통화

This commit is contained in:
2026-05-13 16:51:51 +09:00
parent c8ac953b14
commit ee8cfb4ba8
5 changed files with 82 additions and 46 deletions

View File

@@ -15,6 +15,12 @@
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"react": ["./node_modules/@types/react/index.d.ts"],
"react/jsx-dev-runtime": ["./node_modules/@types/react/jsx-dev-runtime.d.ts"],
"react/jsx-runtime": ["./node_modules/@types/react/jsx-runtime.d.ts"]
},
/* Linting */
"strict": true,
@@ -24,6 +30,6 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"],
"include": ["src", "../common/**/*.ts"],
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
}