surveyjs / surveyjs_angular_cli

SurveyJS + Angular CLI Quickstart Template
http://surveyjs.io/
40 stars 52 forks source link

Add frequent mistakes section in repository README #61

Open gologames opened 3 years ago

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