voice-changer/client/lib/tsconfig.json
2023-01-05 02:28:36 +09:00

35 lines
989 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"declaration": true,
"outDir": "./dist",
/* */
"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": ["src/*.ts"],
"exclude": ["node_modules"]
}