hyper-tuner-cloud/tsconfig.json

33 lines
637 B
JSON
Raw Normal View History

2021-03-22 14:29:03 -07:00
{
"compilerOptions": {
2022-02-23 15:01:52 -08:00
"target": "ESNext",
2021-03-22 14:29:03 -07:00
"lib": [
2022-02-23 15:01:52 -08:00
"DOM",
"DOM.Iterable",
"ESNext"
2021-03-22 14:29:03 -07:00
],
2022-02-23 15:01:52 -08:00
"allowJs": false,
2021-03-22 14:29:03 -07:00
"skipLibCheck": true,
2022-02-23 15:01:52 -08:00
"esModuleInterop": false,
2021-03-22 14:29:03 -07:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2022-02-23 15:01:52 -08:00
"module": "ESNext",
"moduleResolution": "Node",
2021-03-22 14:29:03 -07:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-07-17 11:55:10 -07:00
"jsx": "react-jsx",
"incremental": false,
"noUncheckedIndexedAccess": false
2021-03-22 14:29:03 -07:00
},
"include": [
"src"
],
2022-02-23 15:01:52 -08:00
"references": [
{
"path": "./tsconfig.node.json"
}
]
2021-03-22 14:29:03 -07:00
}