Move settings sync auth into built in extension

This commit is contained in:
Rachel Macfarlane
2020-01-14 14:50:37 -08:00
parent b13740b4f3
commit 60beab2535
39 changed files with 1729 additions and 576 deletions

View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6",
"es2016",
"dom"
],
"typeRoots": [
"node_modules/@types",
"src/typings"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitAny": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}