@demobook/server
Version:
## Setup
25 lines (24 loc) • 706 B
JSON
{
"compilerOptions": {
"ignoreDeprecations": "5.0",
"outDir": "./dist",
"declaration": false,
"jsx": "react",
"lib": ["es2017", "dom"],
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node", // for module:esnext
"allowJs": false,
"sourceMap": true,
"removeComments": false, // to leave webpack's comment
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strict": true
},
"exclude": ["node_modules", "src/client/**/*.stories.ts"],
"include": ["src/**/*"]
}