mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-22 16:11:38 +03:00
33 lines
652 B
JSON
33 lines
652 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": [
|
||
|
"ES2020",
|
||
|
"DOM",
|
||
|
"DOM.Iterable"
|
||
|
],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"references": [
|
||
|
{
|
||
|
"path": "./tsconfig.node.json"
|
||
|
}
|
||
|
]
|
||
|
}
|