movie-web/tsconfig.json

28 lines
587 B
JSON
Raw Normal View History

2022-02-06 20:56:48 +01: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,
2022-02-10 22:27:57 +01:00
"jsx": "react-jsx",
"baseUrl": "./src",
2022-02-06 20:56:48 +01:00
},
"include": [
"src"
]
}