Skip to content

Commit eb2bc37

Browse files
author
benzhai
committed
add dev env
1 parent 402845f commit eb2bc37

File tree

3 files changed

+70
-3
lines changed

3 files changed

+70
-3
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"dist/"
1010
],
1111
"scripts": {
12-
"build": "tsc -w"
12+
"build": "tsc",
13+
"dev": "tsc -w -p tsconfig.dev.json"
1314
},
1415
"repository": {
1516
"type": "git",

tsconfig.dev.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"compilerOptions": {
3+
/* Basic Options */
4+
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
5+
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
6+
"lib": [
7+
"es2017",
8+
"dom"
9+
],
10+
"sourceMap": true,
11+
// "allowJs": true, /* Allow javascript files to be compiled. */
12+
// "checkJs": true, /* Report errors in .js files. */
13+
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
14+
// "declaration": true, /* Generates corresponding '.d.ts' file. */
15+
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
16+
// "sourceMap": true, /* Generates corresponding '.map' file. */
17+
// "outFile": "./", /* Concatenate and emit output to single file. */
18+
"outDir": "D:\\BitBucket\\gctypedoc\\node_modules\\typedoc-plugin-localization2", /* Redirect output structure to the directory. */
19+
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
20+
// "composite": true, /* Enable project compilation */
21+
// "removeComments": true, /* Do not emit comments to output. */
22+
// "noEmit": true, /* Do not emit outputs. */
23+
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
24+
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
25+
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
26+
27+
/* Strict Type-Checking Options */
28+
"strict": false, /* Enable all strict type-checking options. */
29+
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
30+
// "strictNullChecks": true, /* Enable strict null checks. */
31+
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
32+
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
33+
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
34+
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
35+
36+
/* Additional Checks */
37+
// "noUnusedLocals": true, /* Report errors on unused locals. */
38+
// "noUnusedParameters": true, /* Report errors on unused parameters. */
39+
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
40+
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
41+
42+
/* Module Resolution Options */
43+
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
44+
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
45+
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
46+
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
47+
"typeRoots": [
48+
"node_modules/@types"
49+
], /* List of folders to include type definitions from. */
50+
"types": [
51+
"node"
52+
], /* Type declaration files to be included in compilation. */
53+
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
54+
"esModuleInterop": false, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
55+
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
56+
57+
/* Source Map Options */
58+
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
59+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
60+
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
61+
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
62+
63+
/* Experimental Options */
64+
"experimentalDecorators": true /* Enables experimental support for ES7 decorators. */
65+
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
66+
}
67+
}

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
"es2017",
88
"dom"
99
],
10-
"sourceMap": true,
1110
// "allowJs": true, /* Allow javascript files to be compiled. */
1211
// "checkJs": true, /* Report errors in .js files. */
1312
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
1413
// "declaration": true, /* Generates corresponding '.d.ts' file. */
1514
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
1615
// "sourceMap": true, /* Generates corresponding '.map' file. */
1716
// "outFile": "./", /* Concatenate and emit output to single file. */
18-
"outDir": "D:\\BitBucket\\gctypedoc\\node_modules\\typedoc-plugin-localization2", /* Redirect output structure to the directory. */
17+
"outDir": "dist/", /* Redirect output structure to the directory. */
1918
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
2019
// "composite": true, /* Enable project compilation */
2120
// "removeComments": true, /* Do not emit comments to output. */

0 commit comments

Comments
 (0)