You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kempt-kinkajou-2023/weather_platform/tsconfig.base.json

29 lines
931 B

{
"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": {
"@weather-platform/layout": ["layout/src/index.ts"],
"@weather-platform/pages": ["pages/src/index.ts"],
"@weather-platform/prisma-clients": ["libs/prisma-clients/index.ts"],
"@weather-platform/prisma-clients/*": ["libs/prisma-clients/*"],
"@weather-platform/prisma-generator": ["prisma-generator/src/index.ts"],
"@weather-platform/ui": ["ui/src/index.ts"],
"@weather-platform/ui-modules": ["ui-modules/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}