forked from bichikim/ts-build-test-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
119 lines (111 loc) · 4.31 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"compileOnSave": false,
"compilerOptions": {
/**************************
* Basic Options *
**************************/
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"target": "esnext",
/* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"module": "esnext",
/* Specify library files to be included in the compilation. */
"lib": ["esnext", "dom"],
/* Allow javascript files to be compiled. */
"allowJs": false,
/* Generates corresponding '.d.ts' file. */
"declaration": true,
/* Generates corresponding '.map' file. */
"sourceMap": true,
/* Redirect output structure to the directory. */
"outDir": "dist",
/* Do not emit comments to output. */
"removeComments": false,
/* Import emit helpers from 'tslib'. */
"importHelpers": true,
/* Jsx mode */
"jsx": "preserve",
/********************************
* Strict Type-Checking Options *
********************************/
/* Enable all strict type-checking options. */
"strict": false,
/* Raise error on expressions and declarations with an implied 'any' type. */
"noImplicitAny": false,
/* Enable strict null checks. */
"strictNullChecks": true,
/* Enable strict checking of function types. */
"strictFunctionTypes": true,
/* Enable strict checking of property initialization in classes. */
"strictPropertyInitialization": false,
/* Raise error on 'this' expressions with an implied 'any' type. */
"noImplicitThis": true,
/* Parse in strict mode and emit "use strict" for each source file. */
"alwaysStrict": true,
/**********************************
* Additional Checks *
**********************************/
/* Report errors on unused locals. */
"noUnusedLocals": false,
/* Report errors on unused parameters. */
"noUnusedParameters": false,
/* Report error when not all code paths in function return a value. */
"noImplicitReturns": false,
/* Report errors for fallthrough cases in switch statement. */
"noFallthroughCasesInSwitch": true,
"suppressImplicitAnyIndexErrors": true,
/******************************
* Module Resolution Options *
******************************/
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@@/*": ["*"]
},
/* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"allowSyntheticDefaultImports": true,
/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"esModuleInterop": true,
"typeRoots": [
"node_modules/@types",
"types"
],
// "types": [],
"forceConsistentCasingInFileNames": true,
/* Don't check libs typings */
"skipLibCheck": true,
"noEmitHelpers": false,
/**************************
* Experimental Options *
**************************/
/* Enables experimental support for ES7 decorators. */
"experimentalDecorators": true,
/* Enables experimental support for emitting type metadata for decorators. */
"emitDecoratorMetadata": true,
/************************
* Source Map Options
************************/
/* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "sourceRoot": "./",
/* Specify the location where debugger should locate map files instead of generated locations. */
// "mapRoot": "./",
/* Emit a single file with source maps instead of having a separate file. */
// "inlineSourceMap": true,
/* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
// "inlineSources": true,
/**********************
* ?
************************/
/* it will use that information to detect the least costly way to type-check and emit changes to your project. */
"incremental": false
// build environment
},
"include": [
"node_modules/vue-tsx-support/enable-check.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.vue"
],
"exclude": [
]
}