File tree Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../tsconfig.base" ,
3
3
"compilerOptions" : {
4
- // Tells TypeScript to read JS files, as
5
- // normally they are ignored as source files
6
- "allowJs" : true ,
7
- // Generate d.ts files
8
- "declaration" : true ,
9
- // This compiler run should
10
- // only output d.ts files
11
- "emitDeclarationOnly" : true ,
12
- // Types should go into this directory.
13
- // Removing this would place the .d.ts files
14
- // next to the .js files
15
- "outDir" : " build" ,
16
- // go to js file when using IDE functions like
17
- // "Go to Definition" in VSCode
18
- "declarationMap" : true ,
19
4
"composite" : false ,
20
5
"rootDir" : " src" ,
6
+ "declaration" : true ,
7
+ "declarationMap" : true ,
8
+ "outDir" : " build" ,
21
9
"tsBuildInfoFile" : " build/.tsbuildinfo" ,
10
+ "emitDeclarationOnly" : true ,
22
11
"lib" : [" DOM" , " ESNext" ],
23
12
"noImplicitReturns" : false ,
24
13
"skipLibCheck" : true ,
You can’t perform that action at this time.
0 commit comments