保存进度!
This commit is contained in:
		@@ -53,7 +53,8 @@ module.exports = {
 | 
				
			|||||||
        "no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
					        "no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
				
			||||||
        // "comma-spacing": ["error", { "before": false, "after": true, },],
 | 
					        // "comma-spacing": ["error", { "before": false, "after": true, },],
 | 
				
			||||||
        "brace-style": ["error", "allman", { allowSingleLine: true, },],
 | 
					        "brace-style": ["error", "allman", { allowSingleLine: true, },],
 | 
				
			||||||
        "@typescript-eslint/no-extra-semi": "off",
 | 
					 | 
				
			||||||
        "prefer-const": "warn",
 | 
					        "prefer-const": "warn",
 | 
				
			||||||
 | 
					        "@typescript-eslint/no-extra-semi": "off",
 | 
				
			||||||
 | 
					        "@typescript-eslint/no-inferrable-types": "off",
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,7 @@
 | 
				
			|||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-10 15:08:53
 | 
					 * @Date: 2023-02-10 15:08:53
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-11 00:12:33
 | 
					 * @LastEditTime: 2023-02-13 00:40:30
 | 
				
			||||||
 * @FilePath: /后端辅助工具/src/DataType/DataType.ts
 | 
					 * @FilePath: /后端辅助工具/src/DataType/DataType.ts
 | 
				
			||||||
 * @Description: 
 | 
					 * @Description: 
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
@@ -13,6 +13,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//Tuple
 | 
					//Tuple
 | 
				
			||||||
 | 
					function dataTypes()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
    const tu: readonly [number, number, number] = [1, 1, 2,];
 | 
					    const tu: readonly [number, number, number] = [1, 1, 2,];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const toArray: [number, number, string] = [1, 2, "3",];
 | 
					    const toArray: [number, number, string] = [1, 2, "3",];
 | 
				
			||||||
@@ -23,3 +25,43 @@ const s1 = "string";
 | 
				
			|||||||
    console.log(typeof s1);
 | 
					    console.log(typeof s1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    let point: {
 | 
				
			||||||
 | 
					        x: number,
 | 
				
			||||||
 | 
					        y: number,
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					    point = { x: 0, y: 0, };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    function addOne(x: number, y: number = 1): number
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return x + y;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    console.log(addOne(1));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    function allParams(x: number, y: number): void 
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        const z = x + y;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    //剩余参数,数组形式
 | 
				
			||||||
 | 
					    function overplusArgusWithArray(x: number, ...argus: number[]): number
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return argus.length;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    function overplusArugsWithTuple(x: number, ...argus: [number, number, string]): number
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        console.log(`元组形式的参数表${argus},剩余参数的数量${argus.length}。`);
 | 
				
			||||||
 | 
					        console.log(argus[2]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        return argus.length;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    overplusArugsWithTuple(1, 2, 3, "test");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    console.log(overplusArgusWithArray(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export { dataTypes };
 | 
				
			||||||
@@ -1,36 +1,19 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-09 22:14:30
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-12 23:52:33
 | 
				
			||||||
 | 
					 * @FilePath: /后端辅助工具/src/main.ts
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const greetings = "Hello, World!";
 | 
					import { dataTypes } from "./DataType/DataType";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// console.log( greetings );
 | 
					const greetings = "hello, this is kane's typescript!";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enum Season
 | 
					console.log(greetings);
 | 
				
			||||||
{
 | 
					console.log("all");
 | 
				
			||||||
    spring = 1,
 | 
					 | 
				
			||||||
    summer,
 | 
					 | 
				
			||||||
    autumn,
 | 
					 | 
				
			||||||
    winter,
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const ar: string[] = [
 | 
					 | 
				
			||||||
    "1", "2",
 | 
					 | 
				
			||||||
];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const ar2: (string | number)[] = [
 | 
					 | 
				
			||||||
    1, 2, 3, "4",
 | 
					 | 
				
			||||||
];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const ar3: readonly (string | number)[] = [1, 2, 3, 4, 5, "7",];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const today = Season.spring;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
function ts(): string
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
    const message = "message";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return message;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ts();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
console.log(today);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					dataTypes();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,15 +1,44 @@
 | 
				
			|||||||
 | 
					"use strict";
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-10 15:08:53
 | 
					 * @Date: 2023-02-10 15:08:53
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-10 15:15:41
 | 
					 * @LastEditTime: 2023-02-13 00:40:30
 | 
				
			||||||
 * @FilePath: /后端辅助工具/src/DataType/DataType.ts
 | 
					 * @FilePath: /后端辅助工具/src/DataType/DataType.ts
 | 
				
			||||||
 * @Description:
 | 
					 * @Description:
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved.
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
/* eslint */
 | 
					/*eslint no-unused-vars: "off" */
 | 
				
			||||||
 | 
					/*eslint @typescript-eslint/no-unused-vars: "off" */
 | 
				
			||||||
 | 
					Object.defineProperty(exports, "__esModule", { value: true });
 | 
				
			||||||
 | 
					exports.dataTypes = void 0;
 | 
				
			||||||
//Tuple
 | 
					//Tuple
 | 
				
			||||||
var tu = [1, 1, 2,];
 | 
					function dataTypes() {
 | 
				
			||||||
var toArray = [1, 2, "3",];
 | 
					    const tu = [1, 1, 2,];
 | 
				
			||||||
var v1 = toArray;
 | 
					    const toArray = [1, 2, "3",];
 | 
				
			||||||
 | 
					    const v1 = toArray;
 | 
				
			||||||
 | 
					    const s1 = "string";
 | 
				
			||||||
 | 
					    console.log(typeof s1);
 | 
				
			||||||
 | 
					    let point;
 | 
				
			||||||
 | 
					    point = { x: 0, y: 0, };
 | 
				
			||||||
 | 
					    function addOne(x, y = 1) {
 | 
				
			||||||
 | 
					        return x + y;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    console.log(addOne(1));
 | 
				
			||||||
 | 
					    function allParams(x, y) {
 | 
				
			||||||
 | 
					        const z = x + y;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    //剩余参数,数组形式
 | 
				
			||||||
 | 
					    function overplusArgusWithArray(x, ...argus) {
 | 
				
			||||||
 | 
					        return argus.length;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    function overplusArugsWithTuple(x, ...argus) {
 | 
				
			||||||
 | 
					        console.log(`元组形式的参数表${argus},剩余参数的数量${argus.length}。`);
 | 
				
			||||||
 | 
					        console.log(argus[2]);
 | 
				
			||||||
 | 
					        return argus.length;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    overplusArugsWithTuple(1, 2, 3, "test");
 | 
				
			||||||
 | 
					    console.log(overplusArgusWithArray(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					exports.dataTypes = dataTypes;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,24 +1,17 @@
 | 
				
			|||||||
var greetings = "Hello, World!";
 | 
					"use strict";
 | 
				
			||||||
// console.log( greetings );
 | 
					/*
 | 
				
			||||||
var Season;
 | 
					 * @Author: Kane
 | 
				
			||||||
(function (Season) {
 | 
					 * @Date: 2023-02-09 22:14:30
 | 
				
			||||||
    Season[Season["spring"] = 1] = "spring";
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
    Season[Season["summer"] = 2] = "summer";
 | 
					 * @LastEditTime: 2023-02-12 23:52:33
 | 
				
			||||||
    Season[Season["autumn"] = 3] = "autumn";
 | 
					 * @FilePath: /后端辅助工具/src/main.ts
 | 
				
			||||||
    Season[Season["winter"] = 4] = "winter";
 | 
					 * @Description:
 | 
				
			||||||
})(Season || (Season = {}));
 | 
					 *
 | 
				
			||||||
;
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved.
 | 
				
			||||||
var ar = [
 | 
					 */
 | 
				
			||||||
    "1", "2",
 | 
					Object.defineProperty(exports, "__esModule", { value: true });
 | 
				
			||||||
];
 | 
					const DataType_1 = require("./DataType/DataType");
 | 
				
			||||||
var ar2 = [
 | 
					const greetings = "hello, this is kane's typescript!";
 | 
				
			||||||
    1, 2, 3, "4",
 | 
					console.log(greetings);
 | 
				
			||||||
];
 | 
					console.log("all");
 | 
				
			||||||
var ar3 = [1, 2, 3, 4, 5, "7",];
 | 
					(0, DataType_1.dataTypes)();
 | 
				
			||||||
var today = Season.spring;
 | 
					 | 
				
			||||||
function ts() {
 | 
					 | 
				
			||||||
    var message = "message";
 | 
					 | 
				
			||||||
    return message;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
ts();
 | 
					 | 
				
			||||||
console.log(today);
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,7 @@
 | 
				
			|||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-09 15:24:20
 | 
					 * @Date: 2023-02-09 15:24:20
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-10 10:16:40
 | 
					 * @LastEditTime: 2023-02-13 00:21:52
 | 
				
			||||||
 * @FilePath: /后端辅助工具/tsconfig.json
 | 
					 * @FilePath: /后端辅助工具/tsconfig.json
 | 
				
			||||||
 * @Description: 
 | 
					 * @Description: 
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
@@ -13,17 +13,23 @@
 | 
				
			|||||||
        "outDir": "./target",
 | 
					        "outDir": "./target",
 | 
				
			||||||
        "strict": false,
 | 
					        "strict": false,
 | 
				
			||||||
        "strictNullChecks": true,
 | 
					        "strictNullChecks": true,
 | 
				
			||||||
 | 
					        "target": "ES2015",
 | 
				
			||||||
 | 
					        "module": "CommonJS",
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    // "files": [
 | 
					    // "files": [
 | 
				
			||||||
    //     "./src/main.ts",
 | 
					    //     "./src/main.ts",
 | 
				
			||||||
    // ],
 | 
					    // ],
 | 
				
			||||||
    "include": [
 | 
					    "include": [
 | 
				
			||||||
        "./src/**/*.ts",
 | 
					        "./src/**/*",
 | 
				
			||||||
        // "./src/*.ts",
 | 
					        // "./src/*.ts",
 | 
				
			||||||
        // "src/main.ts",
 | 
					        // "src/main.ts",
 | 
				
			||||||
        // ".eslintrc.js",
 | 
					        // ".eslintrc.js",
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    "exclude": [
 | 
					    "exclude": [
 | 
				
			||||||
        "./target"
 | 
					        "./target",
 | 
				
			||||||
 | 
					        "node_modules",
 | 
				
			||||||
 | 
					        "bower_componets",
 | 
				
			||||||
 | 
					        "jspm_packages",
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
 | 
					    // "outFile": "./target/mian.js",
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user