refactor(tsconfigs): extend fomr base tsconfig, add tsconfig for ervery package

This commit is contained in:
moklick
2022-08-30 23:06:36 +02:00
parent 43e4842cd6
commit 82566e0b69
18 changed files with 133 additions and 42 deletions

View File

@@ -0,0 +1,26 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true
},
"exclude": ["node_modules"]
}

View File

@@ -0,0 +1,6 @@
{
"name": "tsconfig",
"version": "0.0.0",
"private": true,
"license": "MIT"
}

View File

@@ -0,0 +1,10 @@
{
"display": "ReactFlow Package",
"extends": "./base.json",
"compilerOptions": {
"jsx": "react-jsx",
"lib": ["dom", "esnext"],
"module": "esnext",
"target": "es6"
}
}