-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 1.15 KB
/
tsconfig.base.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
{
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "es2021",
"lib": ["es6", "dom", "es2016", "es2017", "es2018", "es2019", "es2020"],
"sourceMap": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"allowJs": true,
"rootDir": "./",
"outDir": "build",
"declaration": true,
"declarationMap": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"strictBindCallApply": true,
"strict": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"esModuleInterop": true,
"skipLibCheck": true,
"preserveSymlinks": true,
"resolveJsonModule": true,
"importHelpers": true,
"removeComments": false,
"allowSyntheticDefaultImports": true,
"paths": {
"react": ["../../node_modules/preact/compat/"],
"react-dom": ["../../node_modules/preact/compat/"]
}
},
"exclude": ["node_modules", "../../node_modules"]
}