tsconfig.json 584 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "module": "System",
  4. "target": "ES6",
  5. "declaration": false,
  6. "noImplicitAny": false,
  7. "removeComments": true,
  8. "noLib": false,
  9. "outFile": "../../Data/AtomicEditor/CodeEditor/editor.bundle.js",
  10. "sourceMap": true
  11. },
  12. "filesGlob": [
  13. "./**/*.ts"
  14. ],
  15. "atom": {
  16. "rewriteTsconfig": true
  17. },
  18. "files": [
  19. "./editor/editor.ts",
  20. "./editor/editorConfig.ts",
  21. "./interop.ts",
  22. "./typings/ace.d.ts",
  23. "./typings/AtomicQuery.d.ts"
  24. ]
  25. }