-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.04 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
{
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
},
"plugins": [
{ "transform": "typescript-transform-paths" },
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
],
"module": "esnext",
"target": "es6",
"moduleResolution": "node",
"lib": ["es6", "dom", "es2016", "es2017", "es2021"],
"sourceMap": true,
"allowJs": true,
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true,
"rootDirs": ["src"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strict": true,
"downlevelIteration": true,
"ignoreDeprecations": "5.0",
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["src", "index.d.ts"],
"exclude": ["node_modules", "dist", "rollup.config.js"]
}