mirror of
https://github.com/aleleba/create-react-component-library.git
synced 2025-01-09 13:16:57 -06:00
Alejandro Lembke Barrientos
55b0b9f2c3
Creating the first initial version of the create component library.
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
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": "src",
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"@components/*": ["components/*"],
|
|
},
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"PRNameGenerator.ts",
|
|
]
|
|
} |