-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (29 loc) · 864 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@app/*": ["src/app/*"],
"@components/*": ["src/components/*"],
"@types/*": ["src/types/*"],
"@utils/*": ["src/utils/*"],
"@constant/*": ["src/constant/*"],
"@models/*": ["src/models/*"],
"@store/*": ["src/store/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.mjs", "types", "public/firebase-messaging-sw.js", "src/firebase/firebasedb.js"],
"exclude": ["node_modules"]
}