tsconfig.json 285 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "outDir": "./js/",
  4. "sourceMap": true,
  5. "noImplicitAny": true,
  6. "module": "ES2015",
  7. "esModuleInterop": true,
  8. "experimentalDecorators": true,
  9. "target": "es6",
  10. "allowJs": true,
  11. "allowSyntheticDefaultImports": true
  12. },
  13. "include": [
  14. "ts/**/*"
  15. ]
  16. }