test: configure TypeScript sample checks

This commit is contained in:
CoderLambert
2026-09-12 04:35:54 +08:00
parent 30fe2fb0ad
commit 6bb421dd61
+14
View File
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"skipLibCheck": false,
"allowSyntheticDefaultImports": true
},
"include": ["src/demos/typescript-samples/**/*.tsx"]
}