42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "build",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"target": "es5",
|
|
"paths": {
|
|
"@types": ["src/types"],
|
|
"@types/*": ["src/types/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@components": ["src/components"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@pages": ["src/pages"],
|
|
"@services/*": ["src/services/*"],
|
|
"@services": ["src/services"],
|
|
"@config/*": ["src/config/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@utils": ["src/utils"],
|
|
}
|
|
},
|
|
"include": ["src", "Date", "build"],
|
|
"exclude": ["build", "plop-templates", "node_modules", "src/**/*.test.*", "src/**/*.spec.*", "src/stories", "scripts"]
|
|
}
|