Last active
February 14, 2021 18:02
-
-
Save olygood/7fc828601afd7a389a828acdc3772de0 to your computer and use it in GitHub Desktop.
typescript configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
/*avec typescript*/ | |
{ | |
"files": ["src/index.ts"], | |
"compilerOptions": { | |
"outDir": "dist", | |
"allowJs": true, | |
"module": "ESNext", | |
"target": "ES6" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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