Skip to content

Commit f7bc1fb

Browse files
committed
Disable outDir and include
Depends on microsoft/TypeScript#51213
1 parent 063e698 commit f7bc1fb

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ In the project's `tsconfig.json`:
2020
"extends": "@logicer/prettier-config",
2121
... // Your modifications
2222
"compilerOptions": {
23-
"outDir": "<out-directory>" // defaults to "./dist"
23+
"outDir": "<out-directory>"
2424
},
2525
"include": [
26-
"<source-directory>" // defaults to "./src/**/*"
26+
"<source-directory>"
2727
]
2828
}
2929
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@logicer/tsconfig",
4-
"version": "2.0.0",
4+
"version": "3.0.0",
55
"description": "Logicer's Typescript Base Configuration",
66
"main": "tsconfig.json",
77
"repository": {

tsconfig.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
5757
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
5858
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
59-
"outDir": "./dist", /* Specify an output folder for all emitted files. */
59+
// Disabled until https://github.com/microsoft/TypeScript/issues/51213
60+
// "outDir": "./dist", /* Specify an output folder for all emitted files. */
6061
// "removeComments": true, /* Disable emitting comments. */
6162
// "noEmit": true, /* Disable emitting files from a compilation. */
6263
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
@@ -106,8 +107,11 @@
106107
/* Completeness */
107108
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
108109
"skipLibCheck": true /* Skip type checking all .d.ts files. */
109-
},
110-
"include": [
111-
"./src/**/*"
112-
]
110+
}
111+
112+
// Disabled until https://github.com/microsoft/TypeScript/issues/51213
113+
//},
114+
// "include": [
115+
// "src/**/*"
116+
// ]
113117
}

0 commit comments

Comments
 (0)