You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+31
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,37 @@ Change `ionic_source_map` to `ionic_source_map_type` in package.json if it is ov
17
17
18
18
There were significant improvements/changes to most configs. Please review the changes and make sure any custom configs are up to date.
19
19
20
+
Verify that `tsconfig.json` is up to date with recommended settings:
21
+
22
+
```
23
+
{
24
+
"compilerOptions": {
25
+
"allowSyntheticDefaultImports": true,
26
+
"declaration": false,
27
+
"emitDecoratorMetadata": true,
28
+
"experimentalDecorators": true,
29
+
"lib": [
30
+
"dom",
31
+
"es2015"
32
+
],
33
+
"module": "es2015",
34
+
"moduleResolution": "node",
35
+
"sourceMap": true,
36
+
"target": "es5"
37
+
},
38
+
"include": [
39
+
"src/**/*.ts"
40
+
],
41
+
"exclude": [
42
+
"node_modules"
43
+
],
44
+
"compileOnSave": false,
45
+
"atom": {
46
+
"rewriteTsconfig": false
47
+
}
48
+
}
49
+
```
50
+
20
51
### Breaking Changes
21
52
1.`main.dev.ts` and `main.prod.ts` have been deprecated in favor of `main.ts` with the content of `main.dev.ts`. The content of `main.ts` will be optimized at build time for production builds.
22
53
2.`copy.config` and `watch.config` have breaking changes moving to an easier-to-extend configuration style.
0 commit comments