Skip to content

Commit

Permalink
it actually works now
Browse files Browse the repository at this point in the history
Spacerat committed Jul 29, 2019
1 parent 6600d93 commit 3ddc9e7
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion __tests__/test.ts

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "checked-aws-custom-resource",
"version": "0.1.2",
"version": "0.1.4",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test": "jest tests/test.ts",
"build": "tsc src/*.ts",
"lint": "tslint *.ts{,x}"
},
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"declaration": true /* Generates corresponding '.d.ts' file. */,
"target": "ES2018",
"module": "commonjs",
"lib": ["es2016", "es2017.object", "es2017.string"],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
@@ -16,5 +16,6 @@
"sourceMap": false,
"experimentalDecorators": true,
"strictPropertyInitialization": false
}
},
"exclude": ["cdk.out"]
}

0 comments on commit 3ddc9e7

Please sign in to comment.