Skip to content

Commit 3c90d0c

Browse files
authored
Add .cjs file extension support (#1207)
As of Node 13.2.0, the `--experimental-modules` flag was removed making usage of ES modules available by default. As part of the Node ES modules support, they allow a package to define their default module type (which is how `.js` files are interpretted) and also allow using either `.cjs` or `.mjs` to explicitly declare a given file is of one format or the other. We already had the `.mjs` extension supported so this adds `.cjs` to round out support for Node's ES module system. References: * [v13.2.0 release post unflagging `--experimental-modules`](https://nodejs.org/en/blog/release/v13.2.0/) * [v14 documentation of ES Modules](https://nodejs.org/api/esm.html)
1 parent 92a2b46 commit 3c90d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftdetect/javascript.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ fun! s:SelectJavascript()
44
endif
55
endfun
66

7-
autocmd BufNewFile,BufRead *.{js,mjs,jsm,es,es6},Jakefile setfiletype javascript
7+
autocmd BufNewFile,BufRead *.{js,mjs,cjs,jsm,es,es6},Jakefile setfiletype javascript
88
autocmd BufNewFile,BufRead * call s:SelectJavascript()

0 commit comments

Comments
 (0)