feat: init

This commit is contained in:
Morten Olsen
2023-09-06 10:56:36 +02:00
commit 1f3401a961
55 changed files with 6098 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"name": "@bob-the-algorithm/config",
"private": true,
"version": "0.0.1"
}

View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"skipLibCheck": true,
"sourceMap": true,
"strict": true
},
"include": [],
"ts-node": {
"files": true
}
}

View File

@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": [
"ES2019",
"DOM"
],
"target": "ES2019",
"module": "CommonJS",
"moduleResolution": "Node"
}
}

View File

@@ -0,0 +1,8 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["ES2022", "DOM"],
"target": "ES2022",
"module": "ESNext"
}
}