* begin adding a sync on save option * get the main sync on save working * get settings sync on save working --------- Co-authored-by: Sam Purkis <sam.purkis@zimmerbiomet.com> Co-authored-by: fyears <1142836+fyears@users.noreply.github.com>
26 lines
509 B
JSON
26 lines
509 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
// "allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"dom",
|
|
"es5",
|
|
"scripthost",
|
|
"es2015"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
} |