8b7bff7ac3
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.
20 lines
322 B
JavaScript
20 lines
322 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
|
|
"comments": false,
|
|
"compact": false,
|
|
"presets": [
|
|
[
|
|
require.resolve( "@babel/preset-env" ),
|
|
{
|
|
"modules": false,
|
|
"targets": {
|
|
"ie": 11,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
|
|
};
|