File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @alleyinteractive/tsconfig " : patch
3
+ ---
4
+
5
+ Add resolveJsonModule to allow importing JSON files
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ including:
46
46
* ` outDir ` : ` build ` - The output directory for the transpiled files.
47
47
* ` preserveWatchOutput ` : ` true ` - Ensures that the output is cleared before
48
48
each build.
49
+ * ` resolveJsonModule ` : ` true ` - Allows importing JSON files as modules.
49
50
* ` skipLibCheck ` : ` true ` - Skips type checking of ` .d.ts ` files.
50
51
* ` sourceMap ` : ` true ` - Generates source maps for the transpiled files.
51
52
* ` strict ` : ` true ` - Enables all strict type checking options.
Original file line number Diff line number Diff line change 18
18
"noUnusedParameters" : false ,
19
19
"outDir" : " build" ,
20
20
"preserveWatchOutput" : true ,
21
+ "resolveJsonModule" : true ,
21
22
"skipLibCheck" : true ,
22
23
"sourceMap" : true ,
23
24
"strict" : true ,
You can’t perform that action at this time.
0 commit comments