- 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.
13 lines
224 B
JSON
13 lines
224 B
JSON
{
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"search.exclude": {
|
|
"**/.git/": true,
|
|
"**/node_modules/": true,
|
|
"**/dist/": true
|
|
}
|
|
}
|