-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 909 Bytes
/
Copy pathtsconfig.json
File metadata and controls
37 lines (37 loc) · 909 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
{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"target": "es5",
"lib": [
"dom",
"es2015",
"es2016",
"es2017",
"es2020"
],
"types": ["jest"],
"strict": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"sourceMap": true,
"outDir": "dist/lib",
"declaration": true,
"declarationDir": "dist/typings",
"stripInternal": true,
"skipLibCheck": true,
// tsup forces baseUrl:"." into its DTS build (rollup.js, dtsPlugin call),
// which TS6 deprecates. We can't override it from here, so silence it until
// tsup stops injecting baseUrl. Remove when that's fixed upstream.
"ignoreDeprecations": "6.0"
},
"files": [
"index.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false,
"buildOnSave": false
}