Make raw-loader more specific and use .js extension for jscad

suggestion for #519
This commit is contained in:
Kurt Hutten
2021-09-19 17:47:38 +10:00
parent 59df7fdc25
commit bb4659a2dd
4 changed files with 5 additions and 5 deletions

View File

@@ -2,6 +2,6 @@
// eliminates noisy TypeScript errors by registering these file endings as types.
// Learned this method of registering modules from https://stackoverflow.com/a/57444766
declare module "*.md";
declare module "*.SCAD";
declare module "*.scad";
declare module "*.py";
declare module "*.jscad";
declare module "*.jscad.js";