How to fix Javascript Intellisense in cshtml - serenity-is/Serenity GitHub Wiki
Note: This will work on 2017 and above. Tested on visual studio 2019
- Remove _references.js files
- Add jsconfig.json
{
"compilerOptions": {"experimentalDecorators": true},
"include": [
"./typings/serenity/Serenity.CoreLib.d.ts",
"./typings/jspdf/jspdf.autotable.d.ts",
"./typings/jsondiffpatch/index.d.ts",
"./typings/bootstrap-switch/index.d.ts",
"./Imports/**/*",
"./Modules/**/*"
]
}