dailycheckin/docs/tsconfig.json
shitao 06cd1b0664 新增(docs):添加文档
 新增(docs-publish.yml):添加GitHub Actions工作流程,自动部署文档
  🔧 更新(.gitignore):忽略.next和node_modules文件夹
2024-02-20 09:11:25 +08:00

21 lines
510 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}