mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 20:01:36 +00:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
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/*": [
|
|
// "app/(__components)/*"
|
|
// ],
|
|
"components/*": ["components/*"],
|
|
"config": ["config/gIndex.config.ts"],
|
|
"hooks/*": ["hooks/*"],
|
|
"styles/*": ["styles/*"],
|
|
"utils/*": ["utils/*"],
|
|
"types/*": ["types/*"],
|
|
"context/*": ["context/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".next",
|
|
"**/*/_legacy/**/*",
|
|
"**/*/_app/**/*"
|
|
]
|
|
}
|