mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 05:26:58 -06:00
42 lines
887 B
JSON
42 lines
887 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": false,
|
|
"jsx": "react-jsx",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": false,
|
|
"typeRoots" : ["./src/@types", "./node_modules/@types"],
|
|
"types": [
|
|
"react/next",
|
|
"react-dom/next",
|
|
"node"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": "**/*",
|
|
"outDir": "build",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"PRNameGenerator.ts"
|
|
]
|
|
} |