File tree Expand file tree Collapse file tree 1 file changed +24
-7
lines changed Expand file tree Collapse file tree 1 file changed +24
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "moduleResolution" : " node" ,
3
4
"module" : " commonjs" ,
4
5
"declaration" : true ,
5
- "removeComments" : true ,
6
+ "noImplicitAny" : false ,
7
+ "noUnusedLocals" : false ,
8
+ "removeComments" : false ,
9
+ "noLib" : false ,
6
10
"emitDecoratorMetadata" : true ,
7
11
"experimentalDecorators" : true ,
8
- "target" : " es2017" ,
9
- "sourceMap" : true ,
10
- "outDir" : " ./dist" ,
12
+ "target" : " es6" ,
13
+ "sourceMap" : false ,
14
+ "allowJs" : false ,
15
+ "rootDir" : " ./src" ,
11
16
"baseUrl" : " ./" ,
12
- "incremental" : true
17
+ "outDir" : " ./dist" ,
18
+ "lib" : [" es2017" ]
13
19
},
14
- "exclude" : [" node_modules" , " dist" ]
15
- }
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
+ }
You can’t perform that action at this time.
0 commit comments