We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d302ee5 commit bc87084Copy full SHA for bc87084
2 files changed
plugins/theme-tritanopia/src/index.js plugins/theme-tritanopia/src/index.tsplugins/theme-tritanopia/src/index.js renamed to plugins/theme-tritanopia/src/index.ts
@@ -94,9 +94,10 @@ const categoryStyles = {
94
* blue light).
95
*/
96
export default Blockly.Theme.defineTheme('tritanopia', {
97
+ name: 'tritanopia',
98
blockStyles: defaultBlockStyles,
99
categoryStyles: categoryStyles,
100
componentStyles: {},
101
fontStyle: {},
- startHats: null,
102
+ startHats: undefined,
103
});
plugins/theme-tritanopia/tsconfig.json
@@ -0,0 +1,16 @@
1
+{
2
+ "compilerOptions": {
3
+ "baseUrl": "./",
4
+ "outDir": "dist",
5
+ "declaration": true,
6
+ "declarationMap": true,
7
+ "sourceMap": true,
8
+ "module": "es2015",
9
+ "moduleResolution": "bundler",
10
+ "target": "es6",
11
+ "strict": true
12
+ },
13
+ // NOTE: `test/**/*` is automatically included in `blockly-scripts start`.
14
+ // Only src matters for production builds.
15
+ "include": ["src"]
16
+}
0 commit comments