4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 13:06:56 +00:00

skipLibCheck (#31)

* Update package.json

* Update tsconfig.json
This commit is contained in:
Sundar 2021-04-01 14:19:07 +05:30 committed by GitHub
parent 62aeada586
commit 1571d72e78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"]
}