31 lines
568 B
JSON
31 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"module": "commonJS",
|
|
"lib": ["es6", "es2017", "dom"],
|
|
"target": "ES5",
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"storybook-static",
|
|
]
|
|
}
|