Created
March 28, 2021 19:59
-
-
Save shun-shobon/ff2cf28650139e236c5b549ad4415524 to your computer and use it in GitHub Desktop.
TypeScriptの設定ファイル(コピペ用)
This file contains hidden or 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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2020", | |
"module": "commonjs", | |
"lib": ["esnext"], | |
"outDir": "./dist", | |
"rootDir": "./src", | |
"removeComments": true, | |
"isolatedModules": true, | |
"strict": true, | |
"noImplicitReturns": true, | |
"noFallthroughCasesInSwitch": true, | |
"noUncheckedIndexedAccess": true, | |
"noPropertyAccessFromIndexSignature": true, | |
"moduleResolution": "node", | |
"esModuleInterop": true, | |
"skipLibCheck": true, | |
"forceConsistentCasingInFileNames": true, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment