mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00

This PR is intentionally ugly. It duplicates all of the code in cli/js2/ into cli/tsc/ ... because it's very important that we all understand that this code is unnecessarily duplicated in our binary. I hope this ugliness provides the motivation to clean it up. The typescript git submodule is removed, because it's a very large repo and contains all sorts of stuff we don't need. Instead the necessary files are copied directly into the deno repo. Hence +200k lines. COMPILER_SNAPSHOT.bin size ``` master 3448139 this branch 3320972 ``` Fixes #6812
30 lines
661 B
JSON
30 lines
661 B
JSON
{
|
|
"$schema": "https://dprint.dev/schemas/v0.json",
|
|
"projectType": "openSource",
|
|
"lineWidth": 80,
|
|
"indentWidth": 2,
|
|
"typescript": {
|
|
"deno": true
|
|
},
|
|
"markdown": {
|
|
"textWrap": "always"
|
|
},
|
|
"includes": ["**/*.{ts,tsx,js,jsx,json,md}"],
|
|
"excludes": [
|
|
".cargo_home",
|
|
"cli/dts",
|
|
"cli/tsc/*typescript.js",
|
|
"gh-pages",
|
|
"std/**/testdata",
|
|
"std/**/vendor",
|
|
"std/node_modules",
|
|
"std/hash/_wasm",
|
|
"target",
|
|
"third_party"
|
|
],
|
|
"plugins": [
|
|
"https://plugins.dprint.dev/typescript-0.19.9.wasm",
|
|
"https://plugins.dprint.dev/json-0.4.1.wasm",
|
|
"https://plugins.dprint.dev/markdown-0.2.4.wasm"
|
|
]
|
|
}
|