37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["es6", "dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"types": ["node", "jest"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@pages/*": ["src/pages/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@components": ["src/components"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@styles": ["src/styles"],
|
|
"@hooks/*": ["src/hooks/*"],
|
|
"@hooks": ["src/hooks"],
|
|
"@constants": ["src/constants"],
|
|
"@constants/*": ["src/constants/*"],
|
|
"@stores": ["src/stores"],
|
|
"@service": ["src/service"],
|
|
"@libs/*": ["src/libs/*"],
|
|
"@utils": ["src/utils"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", "next.config.js"]
|
|
}
|