Edit in JSFiddle

module.exports = {
  plugins: [
    {
      use: '@gridsome/source-filesystem',
      options: {
        baseDir: 'content/posts',
        typeName: 'Post',
        path: '*.md'
      }
    }
  ]
}