tsconfig.json 549 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": false,
  4. "target": "ES5",
  5. "module": "commonjs",
  6. "declaration": false,
  7. "inlineSourceMap": false,
  8. "removeComments": false
  9. },
  10. "filesGlob": [
  11. "!node_modules/**",
  12. "!build/**",
  13. "Resources/**/*.ts",
  14. "typings/**/*.ts"
  15. ],
  16. "files": [
  17. "Resources/EditorData/TSExample.plugin.ts",
  18. "Resources/Scripts/main.ts",
  19. "typings/Atomic/Atomic.d.ts"
  20. ],
  21. "atom": {
  22. "rewriteTsconfig": true
  23. }
  24. }