Skip to content

Commit

Permalink
Add exclusions and remove comments from tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehtesham Hasnain authored and Ehtesham Hasnain committed Sep 27, 2020
1 parent 00c65a7 commit 3b39db9
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"compilerOptions": {
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
"target": "es5",
"module": "commonjs",
"lib": [
"es2017",
"es7",
"es6",
"dom"
],
"declaration": true,
"outDir": "dist", /* Redirect output structure to the directory. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"strictNullChecks": true, /* Enable strict null checks. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */

"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}
}
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
"dist"
]
}

0 comments on commit 3b39db9

Please sign in to comment.