You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
542 B
JSON
23 lines
542 B
JSON
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"outDir": "dist",
|
||
|
"module": "ESNext",
|
||
|
"target": "ES2020",
|
||
|
"jsx": "react-jsx",
|
||
|
"declaration": false,
|
||
|
"moduleResolution": "node",
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"esModuleInterop": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strict": true,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|