You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[planner] Add typescript support to nodejs build (#153)
## Summary
Add typescript support to nodejs build. I don't think we need a separate
typescript planner, as most typescript projects need nodejs and
`package.json` to function properly.
## How was it tested?
`go test ./...`
/* Visit https://aka.ms/tsconfig to read more about this file */
6
+
/* Language and Environment */
7
+
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
8
+
/* Modules */
9
+
"module": "commonjs", /* Specify what module code is generated. */
10
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
11
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
12
+
/* Type Checking */
13
+
"strict": true, /* Enable all strict type-checking options. */
14
+
/* Completeness */
15
+
"skipLibCheck": true/* Skip type checking all .d.ts files. */
0 commit comments