🏗️ Change packageManager

This commit is contained in:
ajnart
2022-05-29 18:47:12 +02:00
parent 5b4d302c17
commit 0a7f98dd80
4 changed files with 21 additions and 5 deletions

3
.gitignore vendored
View File

@@ -36,4 +36,5 @@ yarn-error.log*
# storybook
storybook-static
data/configs
data/configs
.yarn

3
.yarnrc.yml Normal file
View File

@@ -0,0 +1,3 @@
nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-3.2.1.cjs

View File

@@ -81,5 +81,6 @@
},
"resolutions": {
"@types/react": "17.0.30"
}
},
"packageManager": "yarn@3.2.1"
}

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -15,6 +19,13 @@
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js"
],
"exclude": [
"node_modules"
]
}