mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
ref ANAL-157 - ATM traffic analytics is a combination of Ember and React components. This PR creates a new "Stats" React app that uses Shade
35 lines
819 B
JSON
35 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client", "jest"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Path aliases */
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@src/*": ["*"],
|
|
"@assets/*": ["assets/*"],
|
|
"@components/*": ["components/*"],
|
|
"@hooks/*": ["hooks/*"],
|
|
"@utils/*": ["utils/*"],
|
|
"@views/*": ["views/*"]
|
|
}
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|