-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tscmonorc.yaml
More file actions
49 lines (47 loc) · 998 Bytes
/
.tscmonorc.yaml
File metadata and controls
49 lines (47 loc) · 998 Bytes
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
# yaml-language-server: $schema=packages/config/schemas/root.json
baseConfig: ./tsconfig.base.json
mode: loose
defaultFileMode: default
linkFile: link
generatePaths: true
presets:
default:
compilerOptions:
rootDir: 'src'
outDir: 'dist'
incremental: true
tsBuildInfoFile: 'dist/.tsbuildinfo'
include:
- src/**/*
exclude:
- src/**.spec.ts
- src/**.spec.tsx
json:
include:
- 'src/**/*.json'
esm:
compilerOptions:
module: ESNext
target: ESNext
outDir: esm
tsBuildInfoFile: 'esm/.tsbuildinfo'
common:
compilerOptions:
target: ES2015
module: CommonJS
outDir: commonjs
tsBuildInfoFile: 'commonjs/.tsbuildinfo'
type:
compilerOptions:
outDir: types
tsBuildInfoFile: 'types/.tsbuildinfo'
emitDeclarationOnly: true
files:
esm:
preset: esm
common:
preset: common
type:
preset: type
default:
preset: default