Files
Matt Bierner 7560f94b48 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
2022-12-06 15:17:08 -08:00

21 lines
447 B
JSON

{
"compilerOptions": {
"module": "esnext",
"target": "ES2020",
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"jsx": "react",
// noEmit prevents the default tsc from building this--we use webpack instead
"noEmit": true,
"rootDir": ".",
"types": [
"webpack-env",
"vscode-notebook-renderer"
],
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
}