2020-07-14 15:24:17 -04:00
|
|
|
{
|
|
|
|
"typescript": {
|
|
|
|
"deno": true
|
|
|
|
},
|
|
|
|
"markdown": {
|
2021-03-10 08:17:24 -05:00
|
|
|
"deno": true
|
|
|
|
},
|
|
|
|
"json": {
|
|
|
|
"deno": true
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2022-02-21 12:47:08 -05:00
|
|
|
"exec": {
|
2023-07-31 11:10:10 -04:00
|
|
|
"commands": [{
|
|
|
|
"command": "rustfmt --config imports_granularity=item",
|
|
|
|
"exts": ["rs"]
|
|
|
|
}]
|
2022-02-21 12:47:08 -05:00
|
|
|
},
|
2020-07-14 15:24:17 -04:00
|
|
|
"excludes": [
|
|
|
|
".cargo_home",
|
2020-11-09 14:56:43 -05:00
|
|
|
".git",
|
2022-01-18 06:58:50 -05:00
|
|
|
"cli/bench/testdata/express-router.js",
|
2023-07-31 11:10:10 -04:00
|
|
|
"cli/bench/testdata/npm/",
|
2023-03-21 17:01:53 -04:00
|
|
|
"cli/tsc/dts/lib.d.ts",
|
|
|
|
"cli/tsc/dts/lib.scripthost.d.ts",
|
|
|
|
"cli/tsc/dts/lib.decorators*.d.ts",
|
|
|
|
"cli/tsc/dts/lib.webworker*.d.ts",
|
|
|
|
"cli/tsc/dts/lib.dom*.d.ts",
|
|
|
|
"cli/tsc/dts/lib.es*.d.ts",
|
|
|
|
"cli/tsc/dts/typescript.d.ts",
|
2023-02-20 10:35:04 -05:00
|
|
|
"cli/tests/node_compat/test",
|
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
2024-02-10 15:22:13 -05:00
|
|
|
"tests/testdata/file_extensions/ts_with_js_extension.js",
|
|
|
|
"tests/testdata/fmt/badly_formatted.json",
|
|
|
|
"tests/testdata/fmt/badly_formatted.md",
|
|
|
|
"tests/testdata/fmt/badly_formatted.ipynb",
|
|
|
|
"tests/testdata/byte_order_mark.ts",
|
|
|
|
"tests/testdata/encoding",
|
|
|
|
"tests/testdata/fmt/",
|
|
|
|
"tests/testdata/lint/glob/",
|
|
|
|
"tests/testdata/test/glob/",
|
|
|
|
"tests/testdata/import_attributes/json_with_shebang.json",
|
|
|
|
"tests/testdata/run/error_syntax_empty_trailing_line.mjs",
|
|
|
|
"tests/testdata/run/inline_js_source_map*",
|
|
|
|
"tests/testdata/malformed_config/",
|
|
|
|
"tests/testdata/npm/registry/",
|
|
|
|
"tests/testdata/test/markdown_windows.md",
|
2020-07-22 12:03:46 -04:00
|
|
|
"cli/tsc/*typescript.js",
|
2020-07-16 15:57:19 -04:00
|
|
|
"gh-pages",
|
2020-07-14 15:24:17 -04:00
|
|
|
"target",
|
2024-02-12 15:46:50 -05:00
|
|
|
"tests/ffi/tests/test.js",
|
2024-02-13 11:22:49 -05:00
|
|
|
"tests/util/std",
|
2024-02-15 22:32:28 -05:00
|
|
|
"tests/wpt/suite",
|
2021-01-27 09:06:18 -05:00
|
|
|
"third_party",
|
2023-03-21 09:38:07 -04:00
|
|
|
"tools/node_compat/TODO.md",
|
2023-05-15 08:22:53 -04:00
|
|
|
"tools/node_compat/node",
|
2021-01-27 09:06:18 -05:00
|
|
|
"tools/wpt/expectation.json",
|
2023-05-01 08:37:32 -04:00
|
|
|
"tools/wpt/manifest.json",
|
|
|
|
"ext/websocket/autobahn/reports"
|
2020-07-14 15:24:17 -04:00
|
|
|
],
|
|
|
|
"plugins": [
|
2024-02-16 09:19:24 -05:00
|
|
|
"https://plugins.dprint.dev/typescript-0.89.1.wasm",
|
2023-11-24 12:54:58 -05:00
|
|
|
"https://plugins.dprint.dev/json-0.19.1.wasm",
|
|
|
|
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
|
2024-01-25 12:31:21 -05:00
|
|
|
"https://plugins.dprint.dev/toml-0.6.0.wasm",
|
2023-11-20 18:38:06 -05:00
|
|
|
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
|
2020-07-14 15:24:17 -04:00
|
|
|
]
|
|
|
|
}
|