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
4 changes: 4 additions & 0 deletions plugins/block-dynamic-connection/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
Expand Down
7 changes: 6 additions & 1 deletion plugins/block-shareable-procedures/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"],
"moduleResolution": "node"
"moduleResolution": "node",
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
7 changes: 6 additions & 1 deletion plugins/content-highlight/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "nodenext",
"lib": ["es2021", "dom"]
"lib": ["es2021", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"]
"lib": ["es6", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"]
"lib": ["es6", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"]
"lib": ["es6", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"]
"lib": ["es6", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
6 changes: 5 additions & 1 deletion plugins/field-angle/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*"]
}
}
4 changes: 4 additions & 0 deletions plugins/field-colour-hsv-sliders/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
Expand Down
6 changes: 5 additions & 1 deletion plugins/field-colour/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*"]
}
}
6 changes: 5 additions & 1 deletion plugins/field-date/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*", "dist/**/*", "build/**/*"]
}
}
4 changes: 4 additions & 0 deletions plugins/field-dependent-dropdown/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
Expand Down
6 changes: 5 additions & 1 deletion plugins/field-grid-dropdown/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*", "dist/**/*", "build/**/*"]
}
}
6 changes: 5 additions & 1 deletion plugins/field-multilineinput/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*"]
}
}
6 changes: 5 additions & 1 deletion plugins/field-slider/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
"exclude": ["test/**/*", "dist/**/*", "build/**/*"]
}
}
4 changes: 4 additions & 0 deletions plugins/renderer-inline-row-separators/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
Expand Down
4 changes: 4 additions & 0 deletions plugins/shadow-block-converter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"moduleResolution": "node",
"target": "ES2015",
"strict": true,
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
// NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
// Only src matters for production builds.
Expand Down
7 changes: 6 additions & 1 deletion plugins/toolbox-search/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "nodenext",
"lib": ["es2021", "dom"]
"lib": ["es2021", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
7 changes: 6 additions & 1 deletion plugins/workspace-minimap/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"]
"lib": ["es6", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
7 changes: 6 additions & 1 deletion plugins/workspace-search/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "nodenext",
"lib": ["es2021", "dom"]
"lib": ["es2021", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down
7 changes: 6 additions & 1 deletion plugins/zoom-to-fit/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "nodenext",
"lib": ["es2021", "dom"]
"lib": ["es2021", "dom"],
// Point at the local Blockly. See #1934. Remove if we add hoisting.
"paths": {
"blockly/*": ["node_modules/blockly/*"]
}
},
"include": [
"src", "test"
Expand Down