@dsivd/prestations-ng 18.0.0-beta.4 → 18.0.0-beta.5
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.
|
@@ -92,7 +92,6 @@ You can replace the content of your `.eslintrc.json` with the following `json`.
|
|
|
92
92
|
'/karma.conf.js',
|
|
93
93
|
'/.eslintrc.json',
|
|
94
94
|
'/tsconfig*.json',
|
|
95
|
-
'/src/tsconfig*.json',
|
|
96
95
|
'/src/main.ts',
|
|
97
96
|
'/src/typings.d.ts'
|
|
98
97
|
],
|
|
@@ -371,7 +370,7 @@ You can replace the content of your `.eslintrc.json` with the following `json`.
|
|
|
371
370
|
{
|
|
372
371
|
files: ['src/**/*.spec.ts', 'src/**/*.d.ts'],
|
|
373
372
|
parserOptions: {
|
|
374
|
-
project: '
|
|
373
|
+
project: 'tsconfig.spec.json'
|
|
375
374
|
},
|
|
376
375
|
extends: ['plugin:jasmine/recommended'],
|
|
377
376
|
plugins: ['jasmine'],
|
package/UPGRADING_V18.md
CHANGED
|
@@ -140,7 +140,7 @@ In your `app.module.ts` file:
|
|
|
140
140
|
})
|
|
141
141
|
```
|
|
142
142
|
|
|
143
|
-
#### Move and
|
|
143
|
+
#### Move and update your tsconfig\*.json files
|
|
144
144
|
|
|
145
145
|
- Move your `tsconfig.app.json` and `tsconfig.spec.json` from `src` to `front` (if not already done)
|
|
146
146
|
- Replace your `tsconfig.json` content with:
|
|
@@ -182,7 +182,7 @@ In your `app.module.ts` file:
|
|
|
182
182
|
{
|
|
183
183
|
"extends": "./tsconfig.json",
|
|
184
184
|
"compilerOptions": {
|
|
185
|
-
"outDir": "
|
|
185
|
+
"outDir": "./out-tsc/app",
|
|
186
186
|
"types": []
|
|
187
187
|
},
|
|
188
188
|
"files": ["src/main.ts"],
|
|
@@ -196,7 +196,7 @@ In your `app.module.ts` file:
|
|
|
196
196
|
{
|
|
197
197
|
"extends": "./tsconfig.json",
|
|
198
198
|
"compilerOptions": {
|
|
199
|
-
"outDir": "
|
|
199
|
+
"outDir": "./out-tsc/spec",
|
|
200
200
|
"types": ["jasmine", "node"]
|
|
201
201
|
},
|
|
202
202
|
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
|
|
Binary file
|
package/package.json
CHANGED