mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
73 lines
1.3 KiB
JSON
73 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@store/*": [
|
|
"./src/store/*"
|
|
],
|
|
"@services/*": [
|
|
"./src/services/*"
|
|
],
|
|
"@hooks/*": [
|
|
"./src/hooks/*"
|
|
],
|
|
"@types/*": [
|
|
"./src/types/*"
|
|
],
|
|
"@utils/*": [
|
|
"./src/utils/*"
|
|
],
|
|
"@db/*": [
|
|
"./src/db/*"
|
|
],
|
|
"@styles/*": [
|
|
"./src/styles/*"
|
|
],
|
|
"@/fakemui": [
|
|
"../fakemui/index.ts"
|
|
]
|
|
},
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"../**/*"
|
|
]
|
|
}
|