feat(projects): init project

This commit is contained in:
Soybean
2023-10-21 17:30:30 +08:00
commit 7d09cad140
189 changed files with 9980 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": ["node"]
},
"include": ["src/**/*", "typings/**/*"],
"exclude": ["node_modules", "dist"]
}