Files
big-agi/tsconfig.json
T
2026-04-02 23:05:21 -07:00

47 lines
1.3 KiB
JSON

{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Typescript 6.0 transition: side effects imports are denied by default */
"noUncheckedSideEffectImports": false,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": false,
"checkJs": true,
/* Bundled projects */
"lib": ["dom", "dom.iterable", "ESNext"],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"plugins": [{"name": "next"}],
"incremental": true,
/* Custom options */
"forceConsistentCasingInFileNames": true,
"jsxImportSource": "@emotion/react",
/* Path Aliases */
"paths": {
"*": ["."],
"~/common/*": ["./src/common/*"],
"~/modules/*": ["./src/modules/*"],
"~/server/*": ["./src/server/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts",
// this is here only because otherwise, during standalone build the process would update this file
"dist/types/**/*.ts"
],
"exclude": ["node_modules", "dist", "electron", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", "**/unused/**"]
}