Tutorial: create a Snyk App
Prerequisites
Configure the basics
npm install typescript --save-dev{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"exclude": [
"./tests",
"./dist"
]
}Test it out
Last updated
Was this helpful?

