T001–T006: Phase 1 setup (workspace, Biome, TS, Vitest, layer boundary enforcement)
This commit is contained in:
11
packages/application/package.json
Normal file
11
packages/application/package.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "@initiative/application",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"dependencies": {
|
||||
"@initiative/domain": "workspace:*"
|
||||
}
|
||||
}
|
||||
1
packages/application/src/index.ts
Normal file
1
packages/application/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
||||
10
packages/application/tsconfig.json
Normal file
10
packages/application/tsconfig.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"rootDir": "src",
|
||||
"outDir": "dist"
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "../domain" }]
|
||||
}
|
||||
Reference in New Issue
Block a user