Skip to content

Commit 49130ee

Browse files
Revert back to tsconfig.json
`awesome-typescript-loader` ignores the config if it doesn't end with `.json`.
1 parent e5a8c12 commit 49130ee

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

src/lib/ts-config.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/lib/tsconfig.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default env => {
5858
env.manifest = readJson(src('manifest.json')) || {};
5959

6060
// use user specified tsconfig.json if present
61-
let tsconfig = resolve(__dirname, 'ts-config.js');
61+
let tsconfig = resolve(__dirname, 'tsconfig.json');
6262
try {
6363
statSync(src('tsconfig.json'));
6464
tsconfig = src('tsconfig.json');

0 commit comments

Comments
 (0)