tsconfig.json 252 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es6",
  5. "outDir": "out",
  6. "lib": [
  7. "es6"
  8. ],
  9. "sourceMap": true,
  10. "strict": true /* enable all strict type-checking options */
  11. },
  12. "exclude": [
  13. "node_modules",
  14. ".vscode-test"
  15. ]
  16. }