@@ -0,0 +1 @@
+console.log("hello")
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Document</title>
+</head>
+<body>
+
+</body>
+</html>
@@ -0,0 +1,2 @@
+let a3 = 12;
+console.log(a3);
+let b3 = 12;
+console.log(b3);
@@ -0,0 +1,26 @@
+{
+ // ** 任意文件夹
+ // * 任意文件
+ // 入口文件
+ // "include": [
+ // "src/**/*"
+ // ],
+ // 出口文件
+ "exclude": [
+ "./src/**/*"
+ ],
+ // 继承
+ // "extends": "./tsconfig.base.json",
+ // 文件
+ // "files": [
+ // "./src/a1.ts",
+ // "./src/a2.ts",
+ // "./src/a3.ts",
+ // "./src/a4.ts",
+ // "./demo.ts"
+ // ],
+ // 编译选项
+ "compilerOptions": {
+ }
+}