mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
24 lines
631 B
JSON
24 lines
631 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"incremental": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "site.config.ts"]
|
|
}
|