From 291e903ae635c0c1d8e7a673243ee4f28e849b9e Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Tue, 14 Nov 2017 14:35:57 +0300 Subject: [PATCH] Mark js/js/translator/testData/out-min/ as excluded directory in IDEA It's required to avoid indexing a lot of js files (> 200MB) after each run of js tests. --- js/js.translator/build.gradle.kts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/js/js.translator/build.gradle.kts b/js/js.translator/build.gradle.kts index 3dccdf508fd..2ab8ec6a3e5 100644 --- a/js/js.translator/build.gradle.kts +++ b/js/js.translator/build.gradle.kts @@ -1,3 +1,8 @@ +import org.gradle.plugins.ide.idea.model.IdeaModel + +plugins { + idea +} apply { plugin("kotlin") } @@ -21,3 +26,9 @@ sourceSets { } "test" {} } + +configure { + module { + excludeDirs = excludeDirs + files("testData/out-min") + } +} \ No newline at end of file