mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-22 09:37:54 +00:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["vite/client"],
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"noImplicitAny": false,
|
|
"strictPropertyInitialization": false,
|
|
"experimentalDecorators": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./types",
|
|
"@testing-library/jest-dom",
|
|
"../src/themes/types",
|
|
"./node_modules"
|
|
],
|
|
"declaration": true,
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["src/**/*", "types"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"src/setupTests.ts",
|
|
"functions",
|
|
"src/utils/UserMigration",
|
|
"src/setupProxy.js",
|
|
"src/assets/userReportInit.js",
|
|
"packages/components",
|
|
"packages/themes"
|
|
]
|
|
}
|