We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5a8c12 commit 49130eeCopy full SHA for 49130ee
src/lib/ts-config.js
src/lib/tsconfig.json
@@ -0,0 +1,11 @@
1
+{
2
+ "compilerOptions": {
3
+ "noEmitHelpers": true,
4
+ "module": "es2015",
5
+ "moduleResolution": "node",
6
+ "target": "es2017",
7
+ "noImplicitAny": false,
8
+ "sourceMap": true,
9
+ "jsx": "preserve"
10
+ }
11
+}
src/lib/webpack-config.js
@@ -58,7 +58,7 @@ export default env => {
58
env.manifest = readJson(src('manifest.json')) || {};
59
60
// use user specified tsconfig.json if present
61
- let tsconfig = resolve(__dirname, 'ts-config.js');
+ let tsconfig = resolve(__dirname, 'tsconfig.json');
62
try {
63
statSync(src('tsconfig.json'));
64
tsconfig = src('tsconfig.json');
0 commit comments