mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
36 lines
757 B
JSON
36 lines
757 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@/components/*": ["components/*"],
|
|
"@/theme/*": ["theme/*"],
|
|
"@/data/*": ["data/*"],
|
|
"@/lib/*": ["lib/*"],
|
|
"@/styles/*": ["styles/*"]
|
|
},
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.json",
|
|
"**/*.js",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.jsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|