yavsc/src/Yavsc/jsconfig.json

23 lines
378 B
JSON
Raw Normal View History

2016-05-17 18:22:18 +02:00
{
// See http://go.microsoft.com/fwlink/?LinkId=759670
// for the documentation about the jsconfig.json format
"compilerOptions": {
2020-09-09 16:44:17 +01:00
"module": "commonjs",
2016-05-17 18:22:18 +02:00
"target": "es6"
},
2020-09-09 16:44:17 +01:00
"include": [
"wwwroot/js/**/*"
],
2016-05-17 18:22:18 +02:00
"exclude": [
"bin",
"src",
"Resources",
"Properties",
"contrib",
"node_modules",
"bower_components",
"jspm_packages",
"tmp",
"temp"
]
}