introduced yarn workspace

This commit is contained in:
Jan Prochazka
2020-02-03 19:43:11 +01:00
parent 56e6777044
commit acf6a1ce74
151 changed files with 1515 additions and 8576 deletions

View File

@@ -0,0 +1,32 @@
{
"compilerOptions": {
"module": "esnext",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Node",
"noImplicitAny": false,
"strictNullChecks": false,
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
// doesn't work
"types": [
"dbgate"
]
},
"include": [
"src"
]
}