Skip to content

Commit 67508b6

Browse files
committedJun 12, 2023
deploy to vercel
1 parent 0ae1b72 commit 67508b6

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
 

‎base.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
3+
"display": "Default",
4+
"compilerOptions": {
5+
"composite": false,
6+
"declaration": true,
7+
"declarationMap": true,
8+
"esModuleInterop": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"inlineSources": false,
11+
"isolatedModules": true,
12+
"moduleResolution": "node",
13+
"noUnusedLocals": false,
14+
"noUnusedParameters": false,
15+
"preserveWatchOutput": true,
16+
"skipLibCheck": true,
17+
"strict": true
18+
},
19+
"exclude": ["node_modules"]
20+
}

‎nextjs.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
3+
"display": "Next.js",
4+
"extends": "./base.json",
5+
"compilerOptions": {
6+
"target": "es5",
7+
"lib": ["dom", "dom.iterable", "esnext"],
8+
"allowJs": true,
9+
"baseUrl": "../..",
10+
"paths": {
11+
"@ui/*": ["apps/web/ui/*"]
12+
},
13+
"skipLibCheck": true,
14+
"strict": true,
15+
"forceConsistentCasingInFileNames": true,
16+
"noEmit": true,
17+
"incremental": true,
18+
"esModuleInterop": true,
19+
"module": "esnext",
20+
"resolveJsonModule": true,
21+
"isolatedModules": true,
22+
"jsx": "preserve"
23+
},
24+
"include": ["src", "next-env.d.ts", "tailwind.config.js"],
25+
"exclude": ["node_modules"]
26+
}

0 commit comments

Comments
 (0)
Please sign in to comment.