- Add pnpm workspace configuration to specify built dependencies. - Create tsconfig.json for TypeScript compiler options and module resolution. - Add tsconfig.build.json for build-specific TypeScript settings. - Set up Vitest configuration with path aliasing for testing.
11 lines
138 B
JSON
11 lines
138 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
},
|
|
"exclude": [
|
|
"tests/**/*",
|
|
"vitest.config.ts",
|
|
]
|
|
}
|