generated from Alorel/basic-library-template-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 937 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
37
{
"compilerOptions": {
"module": "ESNext",
"allowSyntheticDefaultImports": true,
"declaration": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"downlevelIteration": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"newLine": "lf",
"target": "ES2020",
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors": true,
"strictBindCallApply": true,
"resolveJsonModule": true,
"assumeChangesOnlyAffectDirectDependencies": true,
"stripInternal": true,
"importHelpers": true,
"sourceMap": false,
"paths": {
"*": ["./types/*"]
}
},
"include": [
"declarations.d.ts",
"types/",
"src/"
]
}