OpChan/packages/core/tsconfig.json

16 lines
367 B
JSON
Raw Normal View History

2025-09-18 10:29:03 +05:30
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"baseUrl": "./src",
2025-09-18 11:08:42 +05:30
"target": "es2020",
"module": "esnext",
"lib": ["es2020", "dom"]
2025-09-18 10:29:03 +05:30
},
"include": ["src/**/*"],
"exclude": ["dist", "**/*.test.ts", "**/*.spec.ts"]
}