Here is my tsConfig and my goal is to have compiled tsx files in a build.
`{
"compilerOptions": {
"pretty": true,
"outDir": "./dist",
"baseUrl": "./src",
"sourceMap": true,
"target": "es6",
"module": "commonjs",
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
},
"include": ["src/**/*.ts","src/**/*.tsx"],
"exclude": ["node_modules", "tests", ".vscode"]
}`
Here is my tsConfig and my goal is to have compiled tsx files in a build.
When I'm building project with
tsccommand it works fine and tsx files are compiled, but when it is built with[serverless-plugin-typescript)it missestsxfilesAny workeround?