Skip to content

Instantly share code, notes, and snippets.

@shun-shobon
Created March 28, 2021 19:59
Show Gist options
  • Save shun-shobon/ff2cf28650139e236c5b549ad4415524 to your computer and use it in GitHub Desktop.
Save shun-shobon/ff2cf28650139e236c5b549ad4415524 to your computer and use it in GitHub Desktop.
TypeScriptの設定ファイル(コピペ用)
{
"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