mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
31 lines
876 B
JSON
31 lines
876 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/components/*": ["./src/components/*"],
|
|
"~/hooks/*": ["./src/hooks/*"],
|
|
"~/utilities/*": ["./src/components/utilities/*"],
|
|
"~/*": ["./src/const"],
|
|
"~/pages/*": ["./src/pages/*"],
|
|
"@app/*": ["./src/*"]
|
|
},
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true
|
|
},
|
|
"include": ["next-i18next.config.js", "next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "./.eslintrc.js"],
|
|
"exclude": ["node_modules"]
|
|
}
|