mirror of
https://github.com/aleleba/create-react-component-library.git
synced 2025-07-21 03:58:17 -06:00
PR-188649:
Creating the first initial version of the create component library.
This commit is contained in:
45
tsconfig.json
Normal file
45
tsconfig.json
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
"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",
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user