@lark-apaas/coding-templates 0.1.32 → 0.1.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,6 @@
2
2
  "name": "{{projectName}}",
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
- "type": "module",
6
5
  "mclaw": {
7
6
  "stack": "vite-react",
8
7
  "stackVersion": "0.1.0",
@@ -13,7 +12,9 @@
13
12
  "scripts": {
14
13
  "dev": "vite",
15
14
  "build": "bash scripts/build.sh",
16
- "lint": "npm run lint:client",
15
+ "typecheck": "npm run typecheck:client",
16
+ "typecheck:client": "tsc -p tsconfig.app.json",
17
+ "lint": "npm run typecheck && npm run lint:client",
17
18
  "lint:client": "eslint client/src",
18
19
  "preview": "vite preview"
19
20
  },
@@ -9,5 +9,6 @@
9
9
  "@shared/*": ["./shared/*"]
10
10
  }
11
11
  },
12
- "include": ["client/src", "shared"]
12
+ "include": ["client/src", "shared"],
13
+ "exclude": ["client/src/components/ui"]
13
14
  }