Website/items-old/frontend/tsconfig.json
Mangiang 16b4cce118
Some checks failed
continuous-integration/drone/push Build is failing
feat: Create new db app
2021-12-17 01:02:12 -05:00

35 lines
694 B
JSON

{
"compilerOptions": {
"target": "es6",
"lib": [
"es6",
"dom",
"dom.iterable",
"esnext"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"sourceMap": true,
"jsx": "react-jsx",
"types": [
"cypress"
]
},
"include": [
"src"
]
}