Skip to content

Commit

Permalink
tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
skorfmann committed Dec 1, 2021
1 parent 86c3645 commit 1789f3d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.js
!jest.config.js
!jest.setup.js
!tsconfig.json
36 changes: 36 additions & 0 deletions test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"compilerOptions": {
"alwaysStrict": true,
"charset": "utf8",
"declaration": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"lib": [
"es2018"
],
"module": "CommonJS",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"stripInternal": true,
"target": "ES2018",
"incremental": true
},
"include": [
"**/test.ts",
"*.ts",
],
"exclude": [
"node_modules",
"cdktf.out"
]
}

0 comments on commit 1789f3d

Please sign in to comment.