Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 5745dfe

Browse files
committed
npm install typescript and create tsconfig file
1 parent aa11fdb commit 5745dfe

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

packages/optimizely-sdk/package-lock.json

Lines changed: 16 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/optimizely-sdk/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"mocha-lcov-reporter": "^1.3.0",
5757
"nock": "^7.7.2",
5858
"sinon": "^2.3.1",
59+
"typescript": "^3.3.3",
5960
"webpack": "^4.25.1",
6061
"webpack-cli": "^3.1.2"
6162
},

packages/optimizely-sdk/tsconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "./built",
4+
"allowJs": true,
5+
"target": "es5"
6+
},
7+
"include": ["./lib/**/*"]
8+
}

0 commit comments

Comments
 (0)