forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
57 lines (51 loc) · 1.42 KB
/
tsconfig.json
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
51
52
53
54
55
56
57
{
"compilerOptions": {
"rootDir": ".",
"outDir": "build",
"incremental": true,
"tsBuildInfoFile": "./build/ts-cache.tsbuildinfo",
"lib": [
"es2018",
"es2020.string",
"dom",
"dom.iterable",
"scripthost"
// "esnext.bigint"
],
// Only include the types for jest, not all the ones in node_modules/@types,
// which include NodeJS definitions that are not applicable to a web app
"types": [
"./node_modules/@types/jest",
"./node_modules/@types/css-font-loading-module"
],
// "declaration": true,
// "allowJs": true,
// "checkJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2019",
"module": "esnext",
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"strictNullChecks": false,
"noImplicitAny": false,
"noLib": false,
// We'll strip the comments with rollup.
// Need them for the declaration files
"removeComments": false,
"sourceMap": true
},
"exclude": [
"coverage",
// "test",
"node_modules",
"**/*.spec.ts",
"dist",
"build",
"examples",
"docs",
"tutorials",
"**/*.config.js"
]
}