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.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
import org.gradle.plugins.ide.idea.model.IdeaModel
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
idea
|
||||||
|
}
|
||||||
|
|
||||||
apply { plugin("kotlin") }
|
apply { plugin("kotlin") }
|
||||||
|
|
||||||
@@ -21,3 +26,9 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
"test" {}
|
"test" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configure<IdeaModel> {
|
||||||
|
module {
|
||||||
|
excludeDirs = excludeDirs + files("testData/out-min")
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user