mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 13:38:38 +00:00
30 lines
795 B
JSON
30 lines
795 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext", "es2019"],
|
|
"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": "./src",
|
|
"paths": {
|
|
// "@/*": ["./src/*"],
|
|
"components/*": ["components/*"],
|
|
"config/*": ["config/*"],
|
|
"hooks/*": ["hooks/*"],
|
|
"styles/*": ["styles/*"],
|
|
"utils/*": ["utils/*"],
|
|
"types/*": ["types/*"],
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", ".next"]
|
|
} |