neptune-back/tsconfig.build.json
Mathis 80c8662ed1
Add tsconfig and tsconfig.build configuration files
Introduced `tsconfig.json` with TypeScript compiler options tailored for the project. Additionally, created `tsconfig.build.json` to extend the main config for build-specific settings and exclusions. This setup ensures a streamlined compilation process and cleaner build output.
2024-10-31 11:42:56 +01:00

5 lines
97 B
JSON

{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
}