Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */


/* Basic Options */
"incremental": true /* Enable incremental compilation */,
"target": "ES2018" /* Specify ECMAScript target version: 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', 'ES2022', or 'ESNext'. */,
Expand All @@ -20,7 +19,7 @@
"declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
"sourceMap": true /* Generates corresponding '.map' file. */,
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./lib" /* Redirect output structure to the directory. */,

Check failure on line 22 in tsconfig.json

View workflow job for this annotation

GitHub Actions / canBuild

The common source directory of 'tsconfig.json' is './src'. The 'rootDir' setting must be explicitly set to this or another path to adjust your output's file layout.

Check failure on line 22 in tsconfig.json

View workflow job for this annotation

GitHub Actions / tests

The common source directory of 'tsconfig.json' is './src'. The 'rootDir' setting must be explicitly set to this or another path to adjust your output's file layout.

Check failure on line 22 in tsconfig.json

View workflow job for this annotation

GitHub Actions / canBuild

The common source directory of 'tsconfig.json' is './src'. The 'rootDir' setting must be explicitly set to this or another path to adjust your output's file layout.

Check failure on line 22 in tsconfig.json

View workflow job for this annotation

GitHub Actions / tests

The common source directory of 'tsconfig.json' is './src'. The 'rootDir' setting must be explicitly set to this or another path to adjust your output's file layout.
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
Expand Down Expand Up @@ -50,7 +49,7 @@
/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node10' (Node.js), 'node16', 'nodenext', or 'bundler'. */
/* Base directory to resolve non-absolute module names. */
"baseUrl": "./",

Check failure on line 52 in tsconfig.json

View workflow job for this annotation

GitHub Actions / canBuild

Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.

Check failure on line 52 in tsconfig.json

View workflow job for this annotation

GitHub Actions / tests

Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.

Check failure on line 52 in tsconfig.json

View workflow job for this annotation

GitHub Actions / canBuild

Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.

Check failure on line 52 in tsconfig.json

View workflow job for this annotation

GitHub Actions / tests

Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
/* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
"paths": {
"docusaurus-json-schema-plugin/*": [
Expand Down Expand Up @@ -85,5 +84,5 @@
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */

}
}
Loading