surveyjs_angular_cli icon indicating copy to clipboard operation
surveyjs_angular_cli copied to clipboard

Add frequent mistakes section in repository README

Open gologames opened this issue 3 years ago • 0 comments

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';

gologames avatar Jun 11 '21 15:06 gologames