Compare commits

...

2 Commits

Author SHA1 Message Date
1c2a9c2c70 Update tsconfig.json 2021-04-01 11:47:28 +05:30
af5ec937fe Update package.json 2021-04-01 10:36:16 +05:30
2 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,7 @@
},
"main": "lib/run.js",
"scripts": {
"build": "tsc",
"build": "tsc --outDir ./lib --rootDir ./src",
"test": "jest",
"test-coverage": "jest --coverage"
},

View File

@ -58,6 +58,7 @@
/* Experimental Options */
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"skipLibCheck": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}