node-html-parser/tsconfig.json
2019-11-18 11:57:36 +08:00

68 lines
No EOL
1.5 KiB
JSON

{
"include": [
"./src/"
],
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictNullChecks": false,
"noImplicitThis": true,
"rootDir": "./src/",
"rootDirs": [],
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": "",
"charset": "utf8",
"declaration": true,
"inlineSourceMap": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"diagnostics": false,
"emitBOM": false,
"forceConsistentCasingInFileNames": false,
"importHelpers": false,
"inlineSources": false,
"isolatedModules": false,
"lib": [
"esnext"
],
"listFiles": false,
"listEmittedFiles": false,
"locale": "zh_CN",
"newLine": "lf",
"noEmit": false,
"moduleResolution": "node",
"noEmitHelpers": false,
"noEmitOnError": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"maxNodeModuleJsDepth": 0,
"noLib": false,
"outDir": "./dist",
"noFallthroughCasesInSwitch": false,
"noResolve": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {},
"preserveConstEnums": false,
"pretty": true,
"removeComments": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"stripInternal": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": true,
"traceResolution": false,
"typeRoots": [],
"types": [
"node"
],
"watch": false
}
}