Skip to content

Commit

Permalink
Described all TS configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
pomek committed Mar 8, 2023
1 parent 0de972d commit f292ff6
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tsconfig.dll.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* The configuration is used when preparing DLL builds.
*/
{
"extends": "./tsconfig.json",
"include": [
Expand Down
4 changes: 4 additions & 0 deletions tsconfig.docs.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* The configuration is used when building docs (snippets adapter and content styles generator).
* This configuration is NOT used when building API docs using typedoc. See `tsconfig.typedoc.json`.
*/
{
"extends": "./tsconfig.json",
"include": [
Expand Down
5 changes: 5 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* The base configuration used by all other configuration.
*
* Be careful when updating this file. It may affect building docs, preparing DLLs, executing tests, or impacts the release process.
*/
{
"compilerOptions": {
"lib": [
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.release-ckeditor5.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* The configuration is used when releasing the `ckeditor5` package.
*/
{
"extends": "./tsconfig.release.json",
"include": [
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.release.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* The configuration is used when releasing all CKEditor 5 packages (from the `packages/` directory).
*/
{
"extends": "./tsconfig.json",
"compilerOptions": {
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* The configuration is used when executing automated and manual tests.
*/
{
"extends": "./tsconfig.json",
"include": [
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.typedoc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* The configuration is used when preparing API docs using typedoc.
*/
{
"extends": "./tsconfig.json",
"include": [
Expand Down

0 comments on commit f292ff6

Please sign in to comment.