aboutsummaryrefslogtreecommitdiffstats
path: root/testing-util
Commit message (Expand)AuthorAgeFilesLines
* formatter chewed on itaclement2008-08-281-981/+914
* switch to container from jrelibaclement2008-06-061-8/+8
* better info on failureaclement2007-02-071-1/+1
* Bug 113948 "Repackage AspectJ" (move module root suites out of default package)mwebster2006-07-301-1/+1
* update license to EPLacolyer2006-06-015-10/+10
* fixed bug with LTW Xreweavable, fix this reflective issue in RunAllBeforeComm...avasseur2005-06-131-2/+2
* placeholder JUnit tests, aspectjrt.jar finder, Java 5 testerwisberg2005-06-081-5/+51
* ignore bintest directoriesacolyer2005-05-311-0/+1
* newbuild.xml replacing build.xml, with Alex okwisberg2005-05-192-50/+3
* parseBoolean utilitywisberg2005-05-172-0/+80
* added test entries instead of autowiredtest for Andy sake, fix 1.4 dependanci...avasseur2005-05-131-2/+2
* path utilitieswisberg2005-05-121-0/+165
* mainly reflective loading - unfortunately also reformattedwisberg2005-05-111-286/+444
* prospective replacements for {module}/build.xml - will move there once valida...wisberg2005-05-111-0/+6
* refactored to avoid clash and duplicate class with modules/testing. Package f...avasseur2005-04-208-12/+9
* visibility changeaclement2005-04-191-2/+2
* From branch: New build scripts that Alex uses under IntelliJ - can be run ind...aclement2005-04-191-0/+47
* organized imports.aclement2004-07-271-5/+4
* spring cleaning in advance of 1.2 enhancements: acolyer2004-01-231-1/+1
* using ../{module}/ convention for testdata references so tests can be run fro...wisberg2003-10-312-3/+5
* removing unused launch configwisberg2003-10-291-39/+0
* Ran "Organize imports" to remove redundant imports etc - acolyer2003-02-261-4/+5
* Ignore bin directoryacolyer2003-02-261-0/+1
* resolving unused-imports warningswisberg2003-02-132-10/+23
* initial versionwisberg2002-12-1615-0/+1390
kport/47527/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/babel.config.js
blob: c48171c83858048c235c6bce36058d52e0d67673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
	plugins: [
		'@babel/plugin-syntax-dynamic-import',
		['@babel/plugin-proposal-class-properties', { loose: true }],
	],
	presets: [
		[
			'@babel/preset-env',
			{
				modules: false,
				useBuiltIns: false,
			},
		],
	],
}