diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-01 09:10:57 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-01 09:10:57 +0000 |
| commit | f91cd16a872d9cda04aeb5c4e31538e3e2bd1895 (patch) | |
| tree | 0953dfe43e1aca3b486523b877788433a576e15b /tsconfig.json | |
| parent | 9439ff4e08b13b22e9431585ec6000761ab51132 (diff) | |
(대표님) tsconfig 수정
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 37 |
1 files changed, 26 insertions, 11 deletions
diff --git a/tsconfig.json b/tsconfig.json index d8b93235..86e44b7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,42 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, - "strict": true, + "strict": false, "noEmit": true, - "esModuleInterop": true, + "incremental": true, "module": "esnext", - "moduleResolution": "bundler", + "esModuleInterop": true, + "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "incremental": true, + "baseUrl": ".", + "paths": { + "@/*": [ + "./*" + ] + }, "plugins": [ { "name": "next" } ], - "paths": { - "@/*": ["./*"] - } + "strictNullChecks": true }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] -} + "include": [ + "next-env.d.ts", + ".next/types/**/*.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ], +}
\ No newline at end of file |
