✨ frontend add
This commit is contained in:
36
frontend/admin/tsconfig.json
Normal file
36
frontend/admin/tsconfig.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user