Skip to content

Instantly share code, notes, and snippets.

View Eoksni's full-sized avatar

Dmitry Mazurok Eoksni

View GitHub Profile
@Eoksni
Eoksni / Build.md
Last active May 21, 2022 07:25 — forked from robertknight/Build.md
Minimal Webpack DllPlugin example

Compile with:

webpack --config vendor.webpack.config.js
webpack --config app.webpack.config.js

Use with the following index.html

@Eoksni
Eoksni / .dir-locals.el
Created May 12, 2017 14:12
Quick hack to populate tide-format-options using .vscode/settings.json for formatting
((nil . ((eval . (progn
(make-local-variable 'tide-format-options)
(setq tide-format-options (dmaz-parse-vscode-formatting (dmaz-joindirs (dmaz-find-dirlocals-dir) ".vscode" "settings.json"))))))))
@Eoksni
Eoksni / c:\temp\test-tsfmt\outer\test.ts
Created May 16, 2017 09:57
test case for tsfmt .editorconfig with --baseDir
let q = function(name) {
console.log("greetings" + name);
}