File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959 }
6060 },
6161 "scripts" : {
62- "build" : " tsc" ,
62+ "build" : " shx rm -rf dist && tsc -p tsconfig.build.json " ,
6363 "clean" : " shx rm -rf dist" ,
6464 "lint" : " eslint" ,
6565 "format" : " prettier --write src" ,
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./tsconfig.json" ,
3+ "compilerOptions" : {
4+ "customConditions" : []
5+ }
6+ }
Original file line number Diff line number Diff line change 11{
2+ "extends" : " @salesforce/dev-config/tsconfig-strict-esm" ,
23 "compilerOptions" : {
3- "target" : " ES2022" ,
4- "module" : " NodeNext" ,
5- "moduleResolution" : " NodeNext" ,
6- "declaration" : true ,
7- "declarationMap" : true ,
8- "sourceMap" : true ,
94 "outDir" : " dist" ,
105 "rootDir" : " src" ,
11- "strict" : true ,
12- "esModuleInterop" : true ,
136 "skipLibCheck" : true ,
7+ "esModuleInterop" : true ,
148 "forceConsistentCasingInFileNames" : true ,
15- "resolveJsonModule" : true
9+ "verbatimModuleSyntax" : true ,
10+ "customConditions" : [" development" ]
1611 },
17- "include" : [" src/**/*" ],
18- "exclude" : [" node_modules" , " dist" ]
12+ "include" : [" ./src/**/*" ]
1913}
20-
You can’t perform that action at this time.
0 commit comments