@lipemat/js-boilerplate 10.3.0-beta.7 → 10.3.0-beta.8
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/config/tsconfig.json +8 -4
- package/package.json +1 -1
package/config/tsconfig.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"//~": "@see ./templates/tsconfig.json to use/extend this configuration in your project",
|
|
3
|
+
"//~~": "PHPStorm will only see changes to the file, if you re-save the project root's tsconfig.json file",
|
|
4
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
5
|
+
"display": "JS Boilerplate",
|
|
4
6
|
"compilerOptions": {
|
|
5
7
|
"allowSyntheticDefaultImports": true,
|
|
6
8
|
"jsx": "preserve",
|
|
@@ -8,14 +10,16 @@
|
|
|
8
10
|
"dom",
|
|
9
11
|
"es2018"
|
|
10
12
|
],
|
|
11
|
-
"module": "
|
|
13
|
+
"module": "ESNext",
|
|
14
|
+
"moduleResolution": "Node",
|
|
12
15
|
"noFallthroughCasesInSwitch": true,
|
|
13
16
|
"noImplicitReturns": true,
|
|
14
17
|
"noImplicitThis": true,
|
|
15
18
|
"sourceMap": true,
|
|
16
19
|
"strictBindCallApply": true,
|
|
17
20
|
"strictNullChecks": true,
|
|
18
|
-
"target": "es6"
|
|
21
|
+
"target": "es6",
|
|
22
|
+
"verbatimModuleSyntax": false
|
|
19
23
|
},
|
|
20
24
|
"exclude": [
|
|
21
25
|
"node_modules"
|