mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
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"]
|
|
}
|