File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4
4
vendor /bundle
5
5
node_modules
6
6
package-lock.json
7
+ api.js
8
+ components /* .js
9
+ tsconfig.tsbuildinfo
7
10
8
11
# # Rocket ignore files (need to be the full relative path to the folders)
9
12
_site-dev
Original file line number Diff line number Diff line change 12
12
},
13
13
"scripts" : {
14
14
"prestart" : " pnpm run typedoc" ,
15
- "prebuild" : " pnpm run typedoc" ,
15
+ "prebuild" : " pnpm run tsc && pnpm run typedoc" ,
16
16
"postinstall" : " patch-package" ,
17
17
"start" : " rocket start" ,
18
18
"build" : " rocket build" ,
19
+ "tsc" : " tsc" ,
19
20
"typedoc" : " typedoc --json docs/_data/api/api.json --entryPoints api.ts" ,
20
21
"test" : " echo \" Error: no test specified\" && exit 1"
21
22
},
Original file line number Diff line number Diff line change 9
9
"noImplicitThis" : true ,
10
10
"noFallthroughCasesInSwitch" : true ,
11
11
"declaration" : false ,
12
- "noEmit" : true ,
13
12
"emitDecoratorMetadata" : false ,
14
13
"experimentalDecorators" : true ,
15
14
"incremental" : true ,
21
20
"jsxFactory" : " etch.dom" ,
22
21
"lib" : [" ES2018" , " dom" ],
23
22
"target" : " ES2018" ,
24
- "allowJs" : true ,
23
+ "allowJs" : false ,
25
24
"esModuleInterop" : true ,
26
- "module" : " commonjs " ,
25
+ "module" : " ESNext " ,
27
26
"moduleResolution" : " node" ,
28
27
"importHelpers" : false
29
28
}
You can’t perform that action at this time.
0 commit comments