Skip to content

Commit

Permalink
fix prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillsud committed Apr 11, 2024
1 parent b1e9851 commit 8031504
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions examples/jwt-auth/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
"compilerOptions": {
"target": "esnext",
"module": "es2020",
"lib": [
"esnext",
"dom"
],
"lib": ["esnext", "dom"],
"jsx": "preserve",
"moduleResolution": "node",
"strict": true,
Expand All @@ -18,10 +15,7 @@
"noImplicitReturns": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@mirohq"
],
"typeRoots": ["./node_modules/@types", "./node_modules/@mirohq"],
"allowJs": true,
"incremental": true,
"isolatedModules": true,
Expand All @@ -31,13 +25,6 @@
}
]
},
"include": [
"src",
"app",
"*.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["src", "app", "*.ts", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 8031504

Please sign in to comment.