playwright/tests/components/ct-react17/tsconfig.json

33 lines
634 B
JSON
Raw Normal View History

2022-03-12 02:46:11 +03:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"*": ["_"],
}
2022-03-12 02:46:11 +03:00
},
"include": [
"src",
"tests"
2022-03-12 02:46:11 +03:00
]
}