File tree 2 files changed +46
-0
lines changed
2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments