Files
big-agi/tsconfig.json
T
2023-04-12 23:40:07 -07:00

28 lines
711 B
JSON

{
"compilerOptions": {
"target": "ES6",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"baseUrl": ".",
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"jsxImportSource": "@emotion/react",
"paths": {
"@/components/*": ["components/*"],
"@/lib/*": ["lib/*"],
"@/types/*": ["types/*"]
},
},
"include": ["next-env.d.ts", "types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}