create-react-component-library/tsconfig.json
Alejandro Lembke Barrientos 55b0b9f2c3 PR-188649:
Creating the first initial version of the create component library.
2022-05-30 15:17:49 +00:00

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",
]
}