@kazion/create-app
Version:
A cli tool to help you get started with graphql and rest api's with typescript
36 lines (35 loc) • 930 B
JSON
{
"compilerOptions": {
"outDir": "dist",
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"lib": ["esnext", "esnext.asynciterable"],
"removeComments": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["node"],
"baseUrl": "src",
"paths": {
"~/*": ["*"]
}
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist", "test"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}