mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 05:26:58 -06:00
46 lines
986 B
JSON
46 lines
986 B
JSON
{
|
|
"extends": "ts-node/node12/tsconfig.json",
|
|
"ts-node": {
|
|
// It is faster to skip typechecking.
|
|
// Remove if you want ts-node to do typechecking.
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": false,
|
|
"jsx": "react-jsx",
|
|
"experimentalDecorators": true,
|
|
"types": [
|
|
"react/next",
|
|
"react-dom/next",
|
|
"node"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": "**/*",
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |