brainatlas.brain.riken.jp/tsconfig.json

26 lines
605 B
JSON
Raw Normal View History

2022-06-08 13:15:52 +09:00
{
"compilerOptions": {
2023-07-28 22:05:26 +09:00
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
2022-06-08 13:15:52 +09:00
"skipLibCheck": true,
2023-07-28 22:05:26 +09:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2022-06-08 13:15:52 +09:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2023-07-28 22:05:26 +09:00
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
2022-06-08 13:15:52 +09:00
},
2023-07-28 22:05:26 +09:00
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2022-06-08 13:15:52 +09:00
}