30 lines
732 B
JSON
30 lines
732 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"module": "esnext",
|
|
"target": "ES6",
|
|
"lib": ["es6", "dom"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"downlevelIteration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"importHelpers": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.jsx", "**/*.js"],
|
|
"exclude": ["node_modules", "src/__tests__/cypress"]
|
|
}
|