File tree Expand file tree Collapse file tree 3 files changed +36
-5
lines changed
packages/create-jellycommands/src Expand file tree Collapse file tree 3 files changed +36
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' create-jellycommands ' : patch
3
+ ---
4
+
5
+ update the jsconfig.json and tsconfig.json
Original file line number Diff line number Diff line change
1
+ // * Don't delete me!!!
2
+ // * If you have questions, ask in The Dev Lounge Discord
3
+ // * https://discord.com/invite/2Vd4wAjJnm
4
+
5
+ {
6
+ "compilerOptions" : {
7
+ "lib" : [" ESNext" ],
8
+ "module" : " ESNext" ,
9
+ "target" : " ESNext" ,
10
+ "esModuleInterop" : true ,
11
+ "forceConsistentCasingInFileNames" : true ,
12
+ "moduleResolution" : " node" ,
13
+ "resolveJsonModule" : true ,
14
+ "strict" : true ,
15
+ "checkJs" : true ,
16
+ "allowJs" : true
17
+ },
18
+ "include" : [" ./src/**/*.js" , " ./src/**/*.ts" ],
19
+ }
Original file line number Diff line number Diff line change
1
+ // * Don't delete me!!!
2
+ // * If you have questions, ask in The Dev Lounge Discord
3
+ // * https://discord.com/invite/2Vd4wAjJnm
4
+
1
5
{
2
6
"compilerOptions" : {
3
- "strict" : true ,
4
7
"lib" : [" ESNext" ],
5
8
"module" : " ESNext" ,
6
9
"target" : " ESNext" ,
7
- "allowSyntheticDefaultImports" : true ,
8
- "moduleResolution" : " node"
10
+ "esModuleInterop" : true ,
11
+ "forceConsistentCasingInFileNames" : true ,
12
+ "moduleResolution" : " node" ,
13
+ "resolveJsonModule" : true ,
14
+ "strict" : true ,
15
+ "checkJs" : true ,
16
+ "allowJs" : true
9
17
},
10
- "include" : [" src/**/*.ts" ],
11
- "exclude" : [" node_modules/**" ]
18
+ "include" : [" ./src/**/*.js" , " ./src/**/*.ts" ],
12
19
}
You can’t perform that action at this time.
0 commit comments