app/tsconfig.base.json
Mathis 91b87237b2
Add newline at end of tsconfig.base.json
This change ensures the file ends with a newline character, conforming to standard formatting practices. It helps in maintaining consistency and prevents potential issues with some text editors and version control systems.
2024-09-23 12:09:14 +02:00

24 lines
583 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@app/shared-ui": ["shared-ui/src/index.ts"],
"@app/shared-ui/server": ["shared-ui/src/server.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}