17 lines
397 B
JSON
17 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"module": "CommonJS",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
"strictFunctionTypes": true,
|
|
"resolveJsonModule": true
|
|
// "strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|