Skip to content

Instantly share code, notes, and snippets.

@olygood
Last active February 14, 2021 18:02
Show Gist options
  • Save olygood/7fc828601afd7a389a828acdc3772de0 to your computer and use it in GitHub Desktop.
Save olygood/7fc828601afd7a389a828acdc3772de0 to your computer and use it in GitHub Desktop.
typescript configuration
/*avec typescript*/
{
"files": ["src/index.ts"],
"compilerOptions": {
"outDir": "dist",
"allowJs": true,
"module": "ESNext",
"target": "ES6"
}
}
/*avec typescript*/
{
"name": "exercice_dyma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "^4.1.3"
}
}
/*avec webpack*/
"webpack": "webpack",
"start": "webpack serve"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment