cosmos-explorer/tsconfig.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

{
"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",
2021-03-29 19:31:52 +01:00
"target": "es2017",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": [
"es5",
"es6",
"dom"
],
"jsx": "react",
"moduleResolution": "node",
"resolveJsonModule": true,
2020-07-08 16:12:49 +01:00
"noEmit": true,
"types": [
"jest"
],
"baseUrl": "src"
},
"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",
"./src/**/*",
"./utils/**/*"
],
"exclude": [
"./src/**/__mocks__/**/*"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}