Make sure tsx files have same formatting as ts files

Also updates the react sample to only have a single tsconfig so tsfmt can be easily run on it
This commit is contained in:
Matt Bierner
2022-12-06 15:17:08 -08:00
parent 7ec56dd3cf
commit 7560f94b48
7 changed files with 93 additions and 110 deletions

View File

@ -1,4 +1,4 @@
declare module '*.css' {
const classes: { [className: string]: string };
export = classes;
}
declare module '*.css' {
const classes: { [className: string]: string };
export = classes;
}