pegjs/tools/bundler/babel.config.js
Futago-za Ryuu 8b7bff7ac3 Resolve linting errors
This also temporarliy disables linting '.ts' files due to the fact that the currect '.d.ts' files contain too many errors/warnings that need to be manually fixed, but since I'm going to be rewriting the whole module in TypeScript anyway, resolving these ESLint error's is a pointless waste of time.
2019-09-29 03:24:42 +01:00

20 lines
322 B
JavaScript

"use strict";
module.exports = {
"comments": false,
"compact": false,
"presets": [
[
require.resolve( "@babel/preset-env" ),
{
"modules": false,
"targets": {
"ie": 11,
},
},
],
],
};