tsconfig.json 316 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": false,
  4. "noEmitOnError": true,
  5. "removeComments": true,
  6. "allowJs": true,
  7. "sourceMap": false,
  8. "module": "CommonJS",
  9. "target": "ES2017",
  10. "outDir": "dist",
  11. "baseUrl": "./",
  12. },
  13. "include": [
  14. "./types/*",
  15. "./plugins/*/index.ts"
  16. ]
  17. }