add kotlin files to folder-loader
This commit is contained in:
parent
6013743705
commit
011a0a75c3
|
|
@ -70,6 +70,7 @@ class Folder_DocumentLoaders implements INode {
|
||||||
'.css': (path) => new TextLoader(path),
|
'.css': (path) => new TextLoader(path),
|
||||||
'.go': (path) => new TextLoader(path), // Go
|
'.go': (path) => new TextLoader(path), // Go
|
||||||
'.h': (path) => new TextLoader(path), // C++ Header files
|
'.h': (path) => new TextLoader(path), // C++ Header files
|
||||||
|
'.kt': (path) => new TextLoader(path), // Kotlin
|
||||||
'.java': (path) => new TextLoader(path), // Java
|
'.java': (path) => new TextLoader(path), // Java
|
||||||
'.js': (path) => new TextLoader(path), // JavaScript
|
'.js': (path) => new TextLoader(path), // JavaScript
|
||||||
'.less': (path) => new TextLoader(path), // Less files
|
'.less': (path) => new TextLoader(path), // Less files
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue