增加一个用于代码测试的typescript项目

This commit is contained in:
2023-03-03 11:35:34 +08:00
parent 10047b7b6d
commit 3afb4ca1ff
13 changed files with 2939 additions and 11 deletions

View File

@@ -0,0 +1,29 @@
/*
* @Author: Kane
* @Date: 2023-03-03 11:21:43
* @LastEditors: Kane
* @FilePath: /code_test/tsconfig.json
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
{
"compilerOptions": {
"strict": true,
"target": "ES2015",
"module": "CommonJS",
"esModuleInterop": true,
"lib": [
"ESNext",
],
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"*.d.ts",
],
"exclude": [
"./node_modules",
],
"compileOnSave": true,
}