-
Notifications
You must be signed in to change notification settings - Fork 2
/
.projenrc.ts
50 lines (46 loc) · 1 KB
/
.projenrc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { javascript, cdk } from 'projen'
const authorName = 'Roman Filippov'
const authorAddress = 'rf@romanfilippov.com'
const repository = 'https://github.com/moltar/projen-turborepo'
const project = new cdk.JsiiProject({
defaultReleaseBranch: 'master',
name: 'projen-turborepo',
description: 'Projen project type for Turborepo monorepo setup.',
keywords: [
'projen',
'turborepo',
'turbo',
'monorepo',
'typescript',
],
license: 'MIT',
repositoryUrl: repository,
repository: repository,
authorName,
author: authorName,
copyrightOwner: authorName,
authorAddress: authorAddress,
authorEmail: authorAddress,
projenrcTs: true,
packageManager: javascript.NodePackageManager.NPM,
bundledDeps: ['dotalias'],
peerDeps: [
'projen',
],
devDeps: [
'projen@0.54.43',
'yaml',
'@types/yaml',
'turbo@^1',
],
releaseToNpm: true,
depsUpgrade: false,
stale: false,
})
project.eslint?.addRules({
semi: [
'error',
'never',
],
})
project.synth()