cosmos-explorer/tsconfig.json
2021-05-27 10:41:24 +05:30

51 lines
1.4 KiB
JSON

{
"compilerOptions": {
"allowJs": true,
"sourceMap": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"module": "esnext",
"target": "es2017",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": ["es5", "es6", "dom"],
"jsx": "react",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"types": ["jest", "playwright", "jest-playwright-preset", "expect-playwright"],
"baseUrl": "src",
"skipLibCheck": true
},
"typedocOptions": {
"entryPoints": [
"./src/SelfServe/Documentation/Documentation.ts",
"./src/SelfServe/Documentation/SupportedFeatures.ts",
"./src/SelfServe/Decorators.tsx",
"./src/SelfServe/SelfServeTypes.ts",
"./src/SelfServe/SelfServeUtils.tsx",
"./src/SelfServe/SelfServeTelemetryProcessor.ts"
],
"out": "docs",
"excludeInternal": true,
"includes": "./src/SelfServe/Documentation",
"disableSources": true
},
"include": [
"./src/**/*",
"./utils/**/*",
"./test/testExplorer/TestExplorer.ts",
"./**/*.ts",
"./**/*.tsx",
"./src/*.d.ts"
],
"exclude": ["./src/**/__mocks__/**/*"]
}