返回 presentation-ai
tsconfig.json
根目录 / tsconfig.json
1 {
2 "compilerOptions": {
3 /* Base Options: */
4 "esModuleInterop": true,
5 "skipLibCheck": true,
6 "target": "es2023",
7 "allowJs": true,
8 "resolveJsonModule": true,
9 "moduleDetection": "force",
10 "isolatedModules": true,
11 /* Strictness */
12 "strict": true,
13 "noUncheckedIndexedAccess": true,
14 "checkJs": true,
15 "noImplicitAny": false,
16 /* Bundled projects */
17 "lib": [
18 "dom",
19 "dom.iterable",
20 "ES2023"
21 ],
22 "noEmit": true,
23 "module": "ESNext",
24 "moduleResolution": "Bundler",
25 "jsx": "react-jsx",
26 "plugins": [
27 {
28 "name": "next"
29 }
30 ],
31 "incremental": true,
32 "paths": {
33 "@/*": [
34 "./src/*"
35 ],
36 "@/prisma/client": [
37 "./prisma/generated/client"
38 ]
39 }
40 },
41 "include": [
42 "**/*.cjs",
43 "**/*.js",
44 "**/*.ts",
45 "**/*.tsx",
46 ".eslintrc.cjs",
47 "next-env.d.ts",
48 "src/ai/open-canvas/nodes/rewrite-artifact/index.tsx",
49 "src/components/notebook/mindmap/types.tss",
50 ".next/types/**/*.ts",
51 ".next/dev/types/**/*.ts"
52 ],
53 "exclude": [
54 "node_modules",
55 ".next/dev/**/*",
56 "prisma/seed/**/*"
57 ]
58 }
59
59 lines JSON