16 lines
360 B
JSON
16 lines
360 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "dom"],
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedParameters": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["./src"]
|
|
}
|