소스 검색

track the configs too

Jonathan Kelley 1 년 전
부모
커밋
774fba85e4
3개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      packages/interpreter/build.rs
  2. 1 0
      packages/interpreter/src/js/README.md
  3. 1 2
      packages/interpreter/tsconfig.json

+ 1 - 0
packages/interpreter/build.rs

@@ -7,6 +7,7 @@ use std::{
 fn main() {
     // If any TS changes, re-run the build script
     println!("cargo:rerun-if-changed=src/ts/*.ts");
+    println!("cargo:rerun-if-changed=*.json");
 
     // Compute the hash of the ts files
     let hash = hash_dir("src/ts");

+ 1 - 0
packages/interpreter/src/js/README.md

@@ -0,0 +1 @@
+this files are generated - do not edit them!

+ 1 - 2
packages/interpreter/tsconfig.json

@@ -5,8 +5,7 @@
             "ES2015",
             "DOM",
             "dom",
-            "dom.iterable",
-            "esnext"
+            "dom.iterable"
         ],
         "noImplicitAny": true,
         "removeComments": true,