forked from Swatinem/rollup-plugin-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (29 loc) · 826 Bytes
/
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
{
"compilerOptions": {
"noEmitOnError": false,
"diagnostics": true,
"lib": ["esnext"],
"target": "es2020",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"moduleResolution": "NodeNext",
"module": "NodeNext",
"jsx": "react",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"incremental": true,
"tsBuildInfoFile": ".build/tsconfig.build.tsbuildinfo",
"declaration": true,
// "declarationMap": true,
"sourceMap": true,
"outDir": ".build"
},
"include": ["src", "tests", "rollup.config.ts"],
"exclude": ["tests/testcases", "tests/preprocess"]
}