Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
468 changes: 327 additions & 141 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"devDependencies": {
"@types/esbuild-copy-static-files": "0.1.4",
"@typescript-eslint/parser": "8.57.0",
"@typescript-eslint/parser": "8.57.2",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"cross-env": "10.1.0",
Expand All @@ -49,7 +49,7 @@
"npm-run-all": "4.1.5",
"playwright": "1.58.2",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"typescript": "6.0.2",
"typescript-eslint": "8.57.0",
"vite": "7.3.1",
"vitepress": "1.6.4",
Expand All @@ -68,6 +68,15 @@
"tmp": "0.2.5",
"dojo-webpack-plugin": {
"tmp": "0.2.5"
},
"typescript-eslint": {
"typescript": "$typescript"
},
"@typescript-eslint/eslint-plugin": {
"typescript": "$typescript"
},
"@typescript-eslint/parser": {
"typescript": "$typescript"
}
},
"repository": {
Expand Down
21 changes: 4 additions & 17 deletions packages/api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
21 changes: 4 additions & 17 deletions packages/chart/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,14 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
21 changes: 4 additions & 17 deletions packages/codemirror/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
20 changes: 4 additions & 16 deletions packages/common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,14 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
19 changes: 2 additions & 17 deletions packages/comms/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.node.ts",
Expand Down
21 changes: 4 additions & 17 deletions packages/composite/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,14 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
18 changes: 2 additions & 16 deletions packages/dataflow/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,8 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"declarationDir": "types"
},
"include": [
"./src/index.ts"
Expand Down
18 changes: 2 additions & 16 deletions packages/ddl-shim/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,11 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
Expand Down
6 changes: 3 additions & 3 deletions packages/dgrid-shim/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"tasks": [
{
"type": "npm",
"label": "compile cjs watch",
"script": "compile-cjs-watch",
"label": "compile watch",
"script": "compile-watch",
"problemMatcher": [],
"presentation": {
"group": "group-build"
Expand All @@ -24,7 +24,7 @@
{
"label": "build",
"dependsOn": [
"compile cjs watch",
"compile watch",
"bundle watch",
],
"group": {
Expand Down
12 changes: 5 additions & 7 deletions packages/dgrid-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,14 @@
},
"scripts": {
"clean": "rimraf --glob lib* types dist *.tsbuildinfo",
"compile-es6": "tsc --module es6 --outDir ./lib-es6",
"compile-es6-watch": "npm run compile-es6 -- -w",
"compile-amd": "tsc --module amd --outDir ./lib-amd",
"compile-cjs": "tsc --module commonjs --outDir ./lib-cjs",
"compile-cjs-watch": "npm run compile-cjs -- -w",
"compile": "tsc",
"compile-watch": "npm run compile -- -w",
"bundle": "webpack",
"bundle-watch": "npm run bundle -- -w",
"minimize": "terser dist/index.js -c -m -o dist/index.min.js",
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-cjs && npm run bundle",
"watch": "run-p compile-cjs-watch bundle-watch",
"build": "npm run compile && npm run bundle",
"watch": "run-p compile-watch bundle-watch",
"lint": "eslint ./src",
"update": "npx --yes npm-check-updates -u -t minor"
},
Expand All @@ -45,6 +42,7 @@
"dojox": "1.17.3",
"string-replace-loader": "3.3.0",
"terser-webpack-plugin": "5.4.0",
"typescript": "5.9.3",
"webpack": "5.105.4",
"webpack-cli": "5.1.4",
"webpack-hasjs-plugin": "1.0.4"
Expand Down
12 changes: 10 additions & 2 deletions packages/dgrid-shim/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./lib-es6",
"module": "es6",
"outDir": "./lib-cjs",
"declarationDir": "./types",
"target": "ES5",
"module": "commonjs",
"moduleResolution": "Node",
"emitDeclarationOnly": false,
"allowImportingTsExtensions": false,
"sourceMap": true,
"declarationMap": true,
"noImplicitAny": false,
"types": []
},
"include": [
"./src/**/*"
Expand Down
2 changes: 0 additions & 2 deletions packages/dgrid/tests/dgrid.browser.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ describe("@hpcc-js/dgrid", async () => {
});
}



if (item.prototype instanceof Class) {
classDef("dgrid", item);
}
Expand Down
21 changes: 4 additions & 17 deletions packages/dgrid/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
{
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"rootDir": "src",
"module": "NodeNext",
"target": "ESNext",
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"DOM",
"ESNext",
"ES2020"
]
"strictNullChecks": false
},
"include": [
"./src/index.ts"
"./src/index.ts",
"../global.d.ts"
]
}
Loading
Loading