Đọc bài này để hiểu vài cấu hình Cấu hình tsconfig.json trong TypeScript (ok)
https://viblo.asia/p/cau-hinh-tsconfigjson-trong-typescript-bWrZnAAvKxw
Last updated
https://viblo.asia/p/cau-hinh-tsconfigjson-trong-typescript-bWrZnAAvKxw
Last updated
tsc app.ts{
"compilerOptions": {
"outDir" : "js",
}
}tsctsc{
"compilerOptions": {
"outDir" : "js",
},
"exclude": [
"css",
]
}tsc{
"compilerOptions": {
"outDir" : "js",
"watch" : true
},
"exclude": [
"css",
]
}tsc{
"compilerOptions": {
"target" : "ES6",
"module" : "commonjs",
"outDir" : "js",
"watch" : true,
"removeComments" : true,
},
"exclude": [
"css",
]
}