We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66df3c3 commit 8b80bffCopy full SHA for 8b80bff
tsconfig.json
@@ -1,15 +1,32 @@
1
{
2
"compilerOptions": {
3
+ "moduleResolution": "node",
4
"module": "commonjs",
5
"declaration": true,
- "removeComments": true,
6
+ "noImplicitAny": false,
7
+ "noUnusedLocals": false,
8
+ "removeComments": false,
9
+ "noLib": false,
10
"emitDecoratorMetadata": true,
11
"experimentalDecorators": true,
- "target": "es2017",
- "sourceMap": true,
- "outDir": "./dist",
12
+ "target": "es6",
13
+ "sourceMap": false,
14
+ "allowJs": false,
15
+ "rootDir": "./src",
16
"baseUrl": "./",
- "incremental": true
17
+ "outDir": "./dist",
18
+ "lib": ["es2017"]
19
},
- "exclude": ["node_modules", "dist"]
-}
20
+ "include": [
21
+ "*.ts",
22
+ "**/*.ts"
23
+ ],
24
+ "exclude": [
25
+ "./index.ts",
26
+ "./index.d.ts",
27
+ "node_modules",
28
+ "./**/*.spec.ts",
29
+ "examples",
30
+ "src/__tests__"
31
+ ]
32
+}
0 commit comments