voice-changer/client/lib/tsconfig.worklet.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2023-01-04 20:28:36 +03:00
{
2023-09-25 07:25:07 +03:00
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"outDir": "./worklet/dist",
"declaration": true,
/* */
"forceConsistentCasingInFileNames": true,
2023-01-04 20:28:36 +03:00
2023-09-25 07:25:07 +03:00
/* */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
2023-01-04 20:28:36 +03:00
2023-09-25 07:25:07 +03:00
/* Module */
"moduleResolution": "node",
"esModuleInterop": true,
// "isolatedModules": true,
"allowSyntheticDefaultImports": true,
2023-01-04 20:28:36 +03:00
2023-09-25 07:25:07 +03:00
// /* 型チェックだけさせたいので出力なし */
// "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"]
2023-01-04 20:28:36 +03:00
}