Revert "bumps and removes deps from www"
This reverts commit 75e08096d8
.
This commit is contained in:
parent
ca9e1981e6
commit
fd31f60bae
3 changed files with 437 additions and 2069 deletions
|
@ -18,13 +18,9 @@
|
|||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.15.5",
|
||||
"@babel/preset-env": "^7.15.4",
|
||||
"@stitches/react": "^1.0.0",
|
||||
"@tldraw/tldraw": "^0.0.57",
|
||||
"@types/node": "^16.7.10",
|
||||
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
||||
"@typescript-eslint/parser": "^4.30.0",
|
||||
"idb": "^6.1.2",
|
||||
"next": "^11.1.0",
|
||||
"next-transpile-modules": "^8.0.0",
|
||||
"react": "^17.0.2",
|
||||
|
@ -40,4 +36,4 @@
|
|||
"eslint-config-next": "11.0.1",
|
||||
"typescript": "^4.3.5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,22 @@
|
|||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts", "dist"],
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.ts",
|
||||
"dist"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"rootDir": ".",
|
||||
"outDir": "./dist/types",
|
||||
"baseUrl": "src",
|
||||
|
|
Loading…
Reference in a new issue