Selector/Selector.Web/tsconfig.json

15 lines
342 B
JSON
Raw Normal View History

2021-10-19 22:25:47 +01:00
{
2021-10-23 11:11:03 +01:00
"compileOnSave": true,
2021-10-19 22:25:47 +01:00
"compilerOptions": {
2021-11-09 18:17:22 +00:00
"strict": true,
2021-10-19 22:25:47 +01:00
"sourceMap": true,
"noImplicitAny": true,
"noEmitOnError": true,
2021-10-19 22:25:47 +01:00
"module": "es6",
"target": "es5",
2021-10-23 11:11:03 +01:00
"allowJs": true,
2021-10-31 19:47:07 +00:00
"moduleResolution": "node",
2021-11-09 18:17:22 +00:00
"outDir": "./wwwroot/js",
2021-11-11 19:54:28 +00:00
"baseUrl": "."
}
2021-10-19 22:25:47 +01:00
}