Open gologames opened 3 years ago
Add information about proper import of local files/libraries in Angular application
More information in this ticket:
After adding this to tsconfig.json "allowSyntheticDefaultImports": true, And changing this import * as json from 'src/assets/survey-model.json'; to this import json from 'src/assets/survey-model.json';
After adding this to tsconfig.json
"allowSyntheticDefaultImports": true,
And changing this
import * as json from 'src/assets/survey-model.json';
to this
import json from 'src/assets/survey-model.json';
Add information about proper import of local files/libraries in Angular application
More information in this ticket: