mirror of
https://github.com/Qortal/q-share.git
synced 2025-01-30 06:42:22 +00:00
27 lines
631 B
JSON
27 lines
631 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
"noImplicitAny": false,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": false,
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"strictNullChecks": false,
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
}
|