mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 01:01:37 +03:00
614fcdf537
Forget flavor-of-the-month, gulp expired _years_ ago.
26 lines
613 B
JSON
26 lines
613 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" }]
|
|
}
|