Created
April 20, 2019 03:02
-
-
Save soroushjp/214f0e289944d4def02dc74b8e16fef5 to your computer and use it in GitHub Desktop.
Sane default tsconfig
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
Show hidden characters
{ | |
"compilerOptions": { | |
/* Basic Options */ | |
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ | |
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ | |
"sourceMap": true, /* Generates corresponding '.map' file. */ | |
"outDir": "build", /* Redirect output structure to the directory. */ | |
/* Strict Type-Checking Options */ | |
"strict": true, /* Enable all strict type-checking options. */ | |
/* Additional Checks */ | |
"noUnusedLocals": true, /* Report errors on unused locals. */ | |
"noUnusedParameters": true, /* Report errors on unused parameters. */ | |
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ | |
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ | |
"forceConsistentCasingInFileNames": true, | |
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ | |
}, | |
"include": ["src"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment