@codady/utils 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/LICENSE +24 -0
- package/README.md +24 -0
- package/dist/utils.cjs.js +113 -0
- package/dist/utils.cjs.min.js +15 -0
- package/dist/utils.esm.js +111 -0
- package/dist/utils.esm.min.js +15 -0
- package/dist/utils.umd.js +119 -0
- package/dist/utils.umd.min.js +15 -0
- package/dist.zip +0 -0
- package/package.json +73 -0
- package/rollup.config.js +68 -0
- package/script-mini.js +41 -0
- package/script-note.js +34 -0
- package/src/deepClone.js +53 -0
- package/src/deepClone.ts +59 -0
- package/src/escapeHTML - /345/211/257/346/234/254.js" +29 -0
- package/src/escapeHTML.js +29 -0
- package/src/escapeHTML.ts +30 -0
- package/src/execluteStr.js +29 -0
- package/src/executeStr.js +36 -0
- package/src/executeStr.ts +42 -0
- package/src/getDataType.js +38 -0
- package/src/getDataType.ts +37 -0
- package/src/parseStr.js +46 -0
- package/src/parseStr.ts +47 -0
- package/src/renderTpl.js +70 -0
- package/src/renderTpl.ts +86 -0
- package/src/requireTypes.js +48 -0
- package/src/requireTypes.ts +54 -0
- package/tsconfig.json +108 -0
package/src/renderTpl.ts
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since Last modified: 2025/11/15 16:24:20
|
|
3
|
+
* @function renderTpl
|
|
4
|
+
* @description Get template string through parameters.Cut the template strings into fragments through labels, and put into the array through the PUSH method, and finally merge into a new string.
|
|
5
|
+
* @param {string} html - Text string with variables, for example: html=`I like {{this.name}}, she is {{this.age}} years old`.
|
|
6
|
+
* @param {object|array} data - Variable key-value pairs, for example: data={name:'Lily',age:20} or [{name:'Lily'},{name:'Mark'}].
|
|
7
|
+
* @param {Object} [options] - Configuration options to control the rendering behavior:
|
|
8
|
+
* @param {boolean} [options.safe=false] - If true, HTML special characters in the template will be escaped to prevent XSS attacks. Default is `false`.
|
|
9
|
+
* @param {boolean} [options.strict=false] - If true, the template engine will require using `this` to access properties, especially for arrays. Default is `false`.
|
|
10
|
+
* @param {string} [options.start='{{'] - The opening delimiter for template variables. Default is `{{`.
|
|
11
|
+
* @param {string} [options.end='}}'] - The closing delimiter for template variables. Default is `}}`.
|
|
12
|
+
* @param {string} [options.suffix='/'] - The suffix for ending script-like expressions. Default is `/`. This is used to close template expressions like `{{this.fn() /}}`.
|
|
13
|
+
* @returns {string} - The string after the variables are replaced with data.
|
|
14
|
+
*/
|
|
15
|
+
'use strict';
|
|
16
|
+
import { T_obj } from "../types/utils";
|
|
17
|
+
import { escapeHTML } from "./escapeHTML";
|
|
18
|
+
import requireTypes from "./requireTypes";
|
|
19
|
+
type options = {
|
|
20
|
+
safe?: boolean,
|
|
21
|
+
strict?: boolean,
|
|
22
|
+
start?:string,
|
|
23
|
+
end?:string,
|
|
24
|
+
suffix?:string,
|
|
25
|
+
}
|
|
26
|
+
const renderTpl = (html: string, data: T_obj | any[], options: options = {}): string => {
|
|
27
|
+
requireTypes(html, 'string', (error) => {
|
|
28
|
+
//不符合要求的类型
|
|
29
|
+
console.error(error);
|
|
30
|
+
return '';
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
if (!html.trim()) return '';
|
|
34
|
+
|
|
35
|
+
let dataType = requireTypes(data, ['array', 'object'], (error) => {
|
|
36
|
+
//不符合要求的类型
|
|
37
|
+
console.error(error);
|
|
38
|
+
return html;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
//data={}/[]
|
|
42
|
+
if (Object.keys(data).length === 0) {
|
|
43
|
+
console.warn('Data is empty ({}/[]), no rendering performed, original text outputted.');
|
|
44
|
+
return html;
|
|
45
|
+
}
|
|
46
|
+
let opts = Object.assign({ safe: false, strict: false, start: '{{', end: '}}', suffix: '/' }, options),
|
|
47
|
+
tplStr = opts.safe ? escapeHTML(html) : html,
|
|
48
|
+
//regStart='\\{\\{'
|
|
49
|
+
regStart = opts.start.split('').map(k => '\\' + k).join(''),
|
|
50
|
+
//regEnd='\\}\\}'
|
|
51
|
+
regEnd = opts.end.split('').map(k => '\\' + k).join(''),
|
|
52
|
+
tplReg = new RegExp(`${regStart}([\\s\\S]+?)?${regEnd}`, 'g'),
|
|
53
|
+
code = '"use strict";let str=[];\n',
|
|
54
|
+
cursor = 0,
|
|
55
|
+
match: any,
|
|
56
|
+
result = '',
|
|
57
|
+
add = (fragment: string, isScript?: boolean) => {
|
|
58
|
+
isScript ? (code += (fragment.endsWith(opts.suffix) ? fragment.replace('=>', '=>').slice(0, -1) + '\n' : 'str.push(' + fragment + ');\n'))
|
|
59
|
+
: (code += (fragment !== '' ? 'str.push("' + fragment.replace(/"/g, '\\"') + '");\n' : ''));
|
|
60
|
+
return add;
|
|
61
|
+
}
|
|
62
|
+
while (match = tplReg.exec(tplStr)) {
|
|
63
|
+
add(tplStr.slice(cursor, match.index))(match[1], true);
|
|
64
|
+
cursor = match.index + match[0].length;
|
|
65
|
+
}
|
|
66
|
+
add(tplStr.slice(cursor));
|
|
67
|
+
code += `return str.join('');`;
|
|
68
|
+
try {
|
|
69
|
+
if (opts.strict || dataType === 'Array') {
|
|
70
|
+
//严格模式,或者是数组数据,则必须使用this
|
|
71
|
+
result = new Function(code.replace(/[\r\t\n]/g, '')).apply(data);
|
|
72
|
+
} else {
|
|
73
|
+
////非严格模式,且是对象,则可省略this
|
|
74
|
+
let keys = Object.keys(data),
|
|
75
|
+
values = Object.values(data),
|
|
76
|
+
//keys传参,this依然可指向data
|
|
77
|
+
tmp = new Function(...keys, code.replace(/[\r\t\n]/g, '')).bind(data);
|
|
78
|
+
//执行时以value赋值
|
|
79
|
+
result = tmp(...values);
|
|
80
|
+
}
|
|
81
|
+
} catch (err: any) {
|
|
82
|
+
console.error(`'${err.message}'`, ' in \n', code, '\n');
|
|
83
|
+
}
|
|
84
|
+
return result;
|
|
85
|
+
}
|
|
86
|
+
export default renderTpl;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since Last modified: 2025/12/16 09:06:26
|
|
3
|
+
* @function requireTypes
|
|
4
|
+
* @description Ensures that the provided data matches one of the required types.
|
|
5
|
+
* If the data does not match, it throws an error or calls the callback with the error.
|
|
6
|
+
* @param {*} data - The data to check.
|
|
7
|
+
* @param {(string | string[])} require - The required types (single or array of types).Optional values are:Array,Object,Function,String,Number,Boolean,Date,Symbol,Null,Undefined,Element(not case sensitive)
|
|
8
|
+
* @param {(error?: Error,type?:string) => void} [cb] - Optional callback function to handle errors.
|
|
9
|
+
* @returns {string} - The type of data.
|
|
10
|
+
* @throws {TypeError} Throws an error if the data type does not match the required types and no callback is provided.
|
|
11
|
+
*/
|
|
12
|
+
'use strict';
|
|
13
|
+
import getDataType from './getDataType';
|
|
14
|
+
/**
|
|
15
|
+
* Type-checking function that ensures the provided data matches one of the required types.
|
|
16
|
+
*
|
|
17
|
+
* @param {any} data - Data to check.
|
|
18
|
+
* @param {(string | string[])} require - The required types (single or array of types).
|
|
19
|
+
* @param {(error?: Error,type?:string) => void} [cb] - Optional callback function to handle errors.
|
|
20
|
+
* @throws {TypeError} Throws an error if the data type does not match the required types.
|
|
21
|
+
*/
|
|
22
|
+
const requireTypes = (data, require, cb) => {
|
|
23
|
+
// Normalize the input types (convert to array if it's a single type)
|
|
24
|
+
let requiredTypes = Array.isArray(require) ? require : [require], dataType = getDataType(data), typeLower = dataType.toLowerCase(),
|
|
25
|
+
// Normalize the type names (to lower case)
|
|
26
|
+
normalizedTypes = requiredTypes.map((type) => type.toLowerCase()),
|
|
27
|
+
// Check if the type is an HTML element (more specific than just 'html')
|
|
28
|
+
normalizedDataType = typeLower.includes('html') ? 'element' : typeLower;
|
|
29
|
+
// If callback exists, handle error through callback
|
|
30
|
+
if (cb) {
|
|
31
|
+
try {
|
|
32
|
+
if (!normalizedTypes.includes(normalizedDataType)) {
|
|
33
|
+
throw new TypeError(`Expected data type(s): [${normalizedTypes.join(', ')}], but got: ${normalizedDataType}`);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
catch (error) {
|
|
37
|
+
cb(error, dataType);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
// If no callback is provided, throw an error directly
|
|
42
|
+
if (!normalizedTypes.includes(normalizedDataType)) {
|
|
43
|
+
throw new TypeError(`Expected data type(s): [${normalizedTypes.join(', ')}], but got: ${normalizedDataType}`);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return dataType;
|
|
47
|
+
};
|
|
48
|
+
export default requireTypes;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since Last modified: 2025/12/16 09:06:26
|
|
3
|
+
* @function requireTypes
|
|
4
|
+
* @description Ensures that the provided data matches one of the required types.
|
|
5
|
+
* If the data does not match, it throws an error or calls the callback with the error.
|
|
6
|
+
* @param {*} data - The data to check.
|
|
7
|
+
* @param {(string | string[])} require - The required types (single or array of types).Optional values are:Array,Object,Function,String,Number,Boolean,Date,Symbol,Null,Undefined,Element(not case sensitive)
|
|
8
|
+
* @param {(error?: Error,type?:string) => void} [cb] - Optional callback function to handle errors.
|
|
9
|
+
* @returns {string} - The type of data.
|
|
10
|
+
* @throws {TypeError} Throws an error if the data type does not match the required types and no callback is provided.
|
|
11
|
+
*/
|
|
12
|
+
'use strict';
|
|
13
|
+
|
|
14
|
+
import getDataType from './getDataType';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Type-checking function that ensures the provided data matches one of the required types.
|
|
18
|
+
*
|
|
19
|
+
* @param {any} data - Data to check.
|
|
20
|
+
* @param {(string | string[])} require - The required types (single or array of types).
|
|
21
|
+
* @param {(error?: Error,type?:string) => void} [cb] - Optional callback function to handle errors.
|
|
22
|
+
* @throws {TypeError} Throws an error if the data type does not match the required types.
|
|
23
|
+
*/
|
|
24
|
+
const requireTypes = (data: any, require: string | string[], cb?: (error?: Error, type?: string) => void): string => {
|
|
25
|
+
// Normalize the input types (convert to array if it's a single type)
|
|
26
|
+
let requiredTypes = Array.isArray(require) ? require : [require],
|
|
27
|
+
dataType = getDataType(data),
|
|
28
|
+
typeLower = dataType.toLowerCase(),
|
|
29
|
+
|
|
30
|
+
// Normalize the type names (to lower case)
|
|
31
|
+
normalizedTypes = requiredTypes.map((type: string) => type.toLowerCase()),
|
|
32
|
+
|
|
33
|
+
// Check if the type is an HTML element (more specific than just 'html')
|
|
34
|
+
normalizedDataType = typeLower.includes('html') ? 'element' : typeLower;
|
|
35
|
+
|
|
36
|
+
// If callback exists, handle error through callback
|
|
37
|
+
if (cb) {
|
|
38
|
+
try {
|
|
39
|
+
if (!normalizedTypes.includes(normalizedDataType)) {
|
|
40
|
+
throw new TypeError(`Expected data type(s): [${normalizedTypes.join(', ')}], but got: ${normalizedDataType}`);
|
|
41
|
+
}
|
|
42
|
+
} catch (error) {
|
|
43
|
+
cb(error as Error, dataType);
|
|
44
|
+
}
|
|
45
|
+
} else {
|
|
46
|
+
// If no callback is provided, throw an error directly
|
|
47
|
+
if (!normalizedTypes.includes(normalizedDataType)) {
|
|
48
|
+
throw new TypeError(`Expected data type(s): [${normalizedTypes.join(', ')}], but got: ${normalizedDataType}`);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return dataType;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export default requireTypes;
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
+
/* Projects */
|
|
5
|
+
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
6
|
+
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
7
|
+
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
8
|
+
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
9
|
+
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
10
|
+
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
11
|
+
/* Language and Environment */
|
|
12
|
+
"target": "es2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
13
|
+
//"lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
14
|
+
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
15
|
+
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
16
|
+
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
17
|
+
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
18
|
+
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
19
|
+
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
20
|
+
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
21
|
+
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
22
|
+
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
23
|
+
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
24
|
+
/* Modules */
|
|
25
|
+
"module": "es2020", /* Specify what module code is generated. */
|
|
26
|
+
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
27
|
+
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
28
|
+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
29
|
+
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
30
|
+
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
31
|
+
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
32
|
+
"types": ["node"], /* Specify type package names to be included without being referenced in a source file. */
|
|
33
|
+
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
34
|
+
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
35
|
+
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
36
|
+
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
37
|
+
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
38
|
+
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
39
|
+
// "resolveJsonModule": true, /* Enable importing .json files. */
|
|
40
|
+
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
41
|
+
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
42
|
+
/* JavaScript Support */
|
|
43
|
+
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
44
|
+
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
45
|
+
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
46
|
+
/* Emit */
|
|
47
|
+
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
48
|
+
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
49
|
+
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
50
|
+
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
51
|
+
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
52
|
+
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
53
|
+
// "outDir": "./", /* Specify an output folder for all emitted files. */
|
|
54
|
+
"removeComments": false, /* Disable emitting comments. */
|
|
55
|
+
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
56
|
+
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
57
|
+
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
58
|
+
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
59
|
+
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
60
|
+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
61
|
+
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
62
|
+
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
63
|
+
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
64
|
+
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
65
|
+
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
66
|
+
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
67
|
+
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
68
|
+
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
69
|
+
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
70
|
+
/* Interop Constraints */
|
|
71
|
+
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
72
|
+
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
73
|
+
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
74
|
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
75
|
+
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
76
|
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
77
|
+
/* Type Checking */
|
|
78
|
+
"strict": true, /* Enable all strict type-checking options. */
|
|
79
|
+
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
80
|
+
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
81
|
+
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
82
|
+
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
83
|
+
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
84
|
+
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
85
|
+
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
86
|
+
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
87
|
+
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
88
|
+
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
89
|
+
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
90
|
+
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
91
|
+
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
92
|
+
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
93
|
+
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
94
|
+
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
95
|
+
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
96
|
+
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
97
|
+
/* Completeness */
|
|
98
|
+
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
99
|
+
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
|
|
100
|
+
},
|
|
101
|
+
// "include": [
|
|
102
|
+
//"src/",
|
|
103
|
+
//"types/",
|
|
104
|
+
//], /*Only compile files in the 'src/scripts' directory 仅编译'src/scripts'目录中的文件*/
|
|
105
|
+
"exclude": [
|
|
106
|
+
"node_modules"
|
|
107
|
+
],
|
|
108
|
+
}
|