Metamigo frontend updates

This commit is contained in:
Darren Clarke 2023-07-05 09:39:24 +00:00 committed by GitHub
parent 9edbeed056
commit 6e3e178187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 56 additions and 56 deletions

View file

@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@ -20,10 +16,7 @@
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./*",
"../../node_modules/*"
]
"@/*": ["./*", "../../node_modules/*"]
},
"plugins": [
{
@ -31,13 +24,6 @@
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "babel__core"]
}