Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:05:10 +08:00
commit 1c87823db1
17 changed files with 1920 additions and 0 deletions

31
skills/tsconfig.json Normal file
View File

@@ -0,0 +1,31 @@
{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
"resolveJsonModule": true,
"lib": ["ES2018", "DOM", "DOM.Iterable"],
"types": ["node"]
},
"include": [
"scripts/**/*",
"lib/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}