OpChan/tsconfig.json
2025-09-18 10:29:03 +05:30

24 lines
673 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true,
"noEmitOnError": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["packages/*/src/**/*"],
"exclude": ["node_modules", "**/dist", "**/*.test.ts", "**/*.spec.ts"]
}