34 lines
882 B
JSON
34 lines
882 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~~/*": ["./*"],
|
|
"~/*": ["./src/*"],
|
|
"~api/*": ["./src/pages/api/*"],
|
|
"~components/*": ["./src/components/*"],
|
|
"~contexts/*": ["./src/contexts/*"],
|
|
"~hooks/*": ["./src/hooks/*"],
|
|
"~layouts/*": ["./src/layouts/*"],
|
|
"~libs/*": ["./src/libs/*"],
|
|
"~pages/*": ["./src/pages/*"],
|
|
"~styles/*": ["./src/styles/*"],
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|