Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 20eab39

Browse files
authored
chore(changelog): 0.0.47 changelog update
1 parent ecbf84c commit 20eab39

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,37 @@ Change `ionic_source_map` to `ionic_source_map_type` in package.json if it is ov
1717

1818
There were significant improvements/changes to most configs. Please review the changes and make sure any custom configs are up to date.
1919

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+
2051
### Breaking Changes
2152
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.
2253
2. `copy.config` and `watch.config` have breaking changes moving to an easier-to-extend configuration style.

0 commit comments

Comments
 (0)