You are seeing exactly the exponential expansion in both cases, limited to the available precision, which is computed with a 64 bit double in the default case and a hundred digits in the "More Digits" case.
Let's try it by hand: $$e^x \approx 1 + x + {x^2 \over 2!} + {x^3 \over 3!} + \dots$$
With a double: $1 + 10^{-15} + 10^{-30}/2 + \dots$ and we have 53 bits $\approx$ 17.46 decimal digits of accuracy, so we can drop the $x^2$ and higher terms.
Now, what is $1+10^{-15}$ in 64 bit floating point representation? Well, it certainly can't represent it exactly. Rather, we have a 53 bit binary number which tries to get as close as possible. Note that $2^{-50}$ + $2^{-52}$ = $1.110223\dots \cdot 10^{-15}$, so that's the best we can do.
Subtract off $1$ and you're left with this as an error term.
The hundred-digit one is correct. You can see the $10^{-15}$ term, the half-$10^{-30}$ term (5 and then a bunch of zeros), the cubic term--it's $1 over 6$ so you get 16666 in the decimal expansion, and then the quartic term comes in on top of it $6666666... + 0416666... \rightarrow 70833333$ etc..