voice-changer/client/lib/tsconfig.worklet.json
2023-02-20 04:49:34 +09:00

34 lines
1.0 KiB
JSON

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