We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e196fc commit f7e5dd9Copy full SHA for f7e5dd9
tsconfig.build.json
@@ -0,0 +1,11 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "include": [
4
+ "source"
5
+ ],
6
+ "compilerOptions": {
7
+ "rootDir": "source",
8
+ "outDir": "dist",
9
+ "noEmit": false,
10
+ }
11
+}
tsconfig.json
@@ -1,6 +1,7 @@
{
- "files": [
- "source/index.ts"
+ "source",
+ "eslint.config.mjs"
],
"compilerOptions": {
@@ -14,13 +15,11 @@
14
15
"moduleResolution": "Node16",
16
17
// Output
- "outDir": "dist",
18
"target": "ESNext",
19
"module": "Node16",
20
- "declaration": true,
21
- "declarationMap": true,
22
"sourceMap": true,
23
"removeComments": true,
+ "noEmit": true,
24
25
// Type checking
26
"strict": true,
0 commit comments