screen-recorder-ts/tsconfig.frontend.json
Wataru Okada 75580b78d9 update
2022-05-18 19:22:37 +09:00

33 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"jsx": "react",
/* */
"forceConsistentCasingInFileNames": true,
/* */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
/* Module */
"moduleResolution": "node",
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
// /* 型チェックだけさせたいので出力なし */
// "noEmit": true,
/* For avoid WebGL2 error */
/* https://stackoverflow.com/questions/52846622/error-ts2430-interface-webglrenderingcontext-incorrectly-extends-interface-w */
"skipLibCheck": true
},
/* tsc */
"include": ["frontend/src/**/*.ts", "frontend/src/**/*.tsx"],
"exclude": ["node_modules"]
}