Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typescript Integration - Phase 1 #148

Merged
merged 58 commits into from
Apr 20, 2020
Merged
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
55c720f
TS integration working build
daigof Oct 30, 2019
c5b1705
add lint TS hook
daigof Oct 30, 2019
4ab75f8
Merge branch 'master' into typescript-integration
daigof Oct 30, 2019
bfe125b
convert utils folder
daigof Oct 31, 2019
a34ac99
revert Helper transition due to error in build
daigof Oct 31, 2019
13beb60
Merge branch 'master' into typescript-integration
daigof Dec 23, 2019
9b3d36f
add lint staged and TS config
daigof Dec 23, 2019
c0e6b2f
update tsconfig add build types to build
daigof Dec 26, 2019
78cbf58
update git ignore
daigof Dec 26, 2019
2b1db3b
replace storybook loader
daigof Dec 26, 2019
351ae1c
feedback fixes
daigof Dec 27, 2019
4a06868
convert 1 story to TS and fix build
daigof Dec 30, 2019
0e8e0dd
add accordion component to TS
daigof Dec 30, 2019
1aec6ab
fix rollup build
daigof Dec 31, 2019
747bec2
config components Type declarations
daigof Dec 31, 2019
44b4b30
separate stories from ts build
daigof Dec 31, 2019
e328fbf
feedback fixes part 1
daigof Jan 2, 2020
fc46c68
feedback fixes part 2
daigof Jan 2, 2020
f2a0954
fix jest module resolver
daigof Jan 2, 2020
a9d5e3e
fix Media Queries type declaration
daigof Jan 3, 2020
8cf8520
update changelog
daigof Jan 10, 2020
1160c7a
v5.0.0-beta.0
daigof Jan 10, 2020
6fd5214
Merge branch 'master' into typescript-integration
daigof Apr 8, 2020
406b2fe
eslint auto fix files
daigof Apr 8, 2020
b05aa28
eslint fixes
daigof Apr 8, 2020
37542b6
bump typescript version
daigof Apr 9, 2020
5ff06d1
Merge branch 'master' into typescript-integration
daigof Apr 9, 2020
e7e3183
alert component typo and webpack reorg
daigof Apr 9, 2020
f15daac
remove prettier for autogenerated files
daigof Apr 9, 2020
425355c
fix typo
daigof Apr 9, 2020
df29122
Merge branch 'master' into typescript-integration
daigof Apr 9, 2020
07adf0f
testing lintstaged
daigof Apr 13, 2020
37fec5f
testing lintstaged TS
daigof Apr 13, 2020
a2b46a3
testing lintstaged JS
daigof Apr 13, 2020
60846e6
Hard type mediaqueries type
daigof Apr 13, 2020
2363eed
refactor cleanup
daigof Apr 13, 2020
55b219b
retore svg indexes and prettier config
daigof Apr 13, 2020
2fa0c78
add TS flags
daigof Apr 13, 2020
b6512db
v7.0.0-beta.0
daigof Apr 13, 2020
0ed16eb
update changelog
daigof Apr 13, 2020
da6217a
remove rollup TS plugin
daigof Apr 15, 2020
5bbcc16
update changelog v7 beta 1
daigof Apr 15, 2020
d0e9475
v7.0.0-beta.1
daigof Apr 15, 2020
838abc6
update babel plugin
daigof Apr 15, 2020
7cbb67c
update changelog
daigof Apr 15, 2020
416a484
v7.0.0-beta.2
daigof Apr 15, 2020
f484506
Merge branch 'master' into typescript-integration
daigof Apr 16, 2020
dfaf795
reorder TSC command in build
daigof Apr 16, 2020
37e2fa8
udpate snapshot test
daigof Apr 16, 2020
08d9145
emitDeclarationOnly flag
daigof Apr 16, 2020
b7a2af9
udpate changelog
daigof Apr 16, 2020
903c7fb
v7.0.0-beta.3
daigof Apr 16, 2020
533b138
Merge branch 'master' into typescript-integration
daigof Apr 17, 2020
fc1f154
restore utils colors to original format
daigof Apr 17, 2020
3b5e5e7
update roll babel plugin
daigof Apr 17, 2020
7b12832
revert rollplugin bable version
daigof Apr 17, 2020
a9f3365
update changelog
daigof Apr 17, 2020
6d27969
v7.0.0-beta.4
daigof Apr 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add TS flags
daigof committed Apr 13, 2020
commit 2fa0c78dc2070a0f834630df470300d98ba386f9
5 changes: 4 additions & 1 deletion shared/tsconfig.json
Original file line number Diff line number Diff line change
@@ -8,12 +8,15 @@
"jsx": "preserve",
"module": "CommonJS",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES2018"
"target": "ESNext",
"useDefineForClassFields": true
}
}