mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-24 14:36:54 +00:00
dc5679ffd3
* Switch to accessibility insights's version of these tools * auto-add files meeting strict checks
12 lines
338 B
JavaScript
12 lines
338 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
const path = require("path");
|
|
const repoRoot = path.join(__dirname, "../").replace(/\\/g, "/");
|
|
|
|
module.exports = {
|
|
repoRoot: repoRoot,
|
|
srcRoot: `${repoRoot}/src`,
|
|
targetTsconfig: "tsconfig.strict.json",
|
|
skippedFiles: new Set([]),
|
|
};
|