Skip to content

Commit 8a8e119

Browse files
Release v0.0.69
1 parent 7e6df85 commit 8a8e119

3 files changed

Lines changed: 23 additions & 2 deletions

File tree

index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module "azdataGraph" {
2+
const azdataGraph: any;
3+
export default azdataGraph;
4+
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.68",
4+
"version": "0.0.69",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",
@@ -13,6 +13,7 @@
1313
"url": "https://github.com/microsoft/azdataGraph/issues"
1414
},
1515
"main": "./dist/build.js",
16+
"types": "index.d.ts",
1617
"scripts": {
1718
"prepare": "grunt build --base ./ --gruntfile etc/build/Gruntfile.js"
1819
},
@@ -22,6 +23,7 @@
2223
"grunt-contrib-copy": "^1.0.0",
2324
"grunt-webpack": "^2.0.1",
2425
"load-grunt-tasks": "^3.5.2",
25-
"webpack": "^2.2.1"
26+
"webpack": "^2.2.1",
27+
"typescript": "^5.7.2"
2628
}
2729
}

tsconfig.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2016",
4+
"module": "commonjs",
5+
"declaration": true,
6+
"emitDeclarationOnly": true,
7+
"outDir": "./dist",
8+
"declarationDir": "./dist",
9+
"esModuleInterop": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"strict": true,
12+
"skipLibCheck": true
13+
},
14+
"include": ["index.d.ts"],
15+
}

0 commit comments

Comments
 (0)