hyper/tsconfig.base.json

21 lines
418 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"composite": true,
"esModuleInterop": true,
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"preserveConstEnums": true,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
2021-04-07 02:09:17 -08:00
"target": "ES2020",
"typeRoots": [
"./node_modules/@types"
]
}
}