Lập trình TypeScript (ok)
https://www.typescriptlang.org/docs/handbook/compiler-options.html
tsconfig.json
{
"compilerOptions":
{
"target": "es6",
"outDir": "mjs",
"removeComments": true,
"sourceMap": true,
"watch": true
},
"exclude": [
"css",
"js",
"mjs"
]
}
PreviousES6 Arrow Functions (ok)NextUncaught ReferenceError: exports is not defined in filed generated by Typescript (ok)
Last updated