mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-12 01:28:27 +00:00
34 lines
818 B
JSON
34 lines
818 B
JSON
// See: https://www.totaltypescript.com/tsconfig-cheat-sheet
|
|
{
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./e2e/**/*.ts",
|
|
"./types.d.ts",
|
|
"./tsup.config.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
/* Building for a monorepo */
|
|
"declaration": true,
|
|
"composite": false,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
/* We're building with tsup */
|
|
"moduleResolution": "Bundler",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"lib": ["es2022", "DOM"],
|
|
"types": ["node"]
|
|
},
|
|
"exclude": ["node_modules", "./e2e/fixtures"]
|
|
}
|