15 lines
340 B
JSON
15 lines
340 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Node",
|
||
|
"target": "ES2020",
|
||
|
"jsx": "react",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/node_modules/*"
|
||
|
]
|
||
|
}
|