voice-changer/client/lib/tsconfig.json

35 lines
992 B
JSON
Raw Normal View History

2023-01-04 20:28:36 +03:00
{
"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 */
2023-01-11 21:49:22 +03:00
"include": ["src/**/*.ts"],
2023-01-04 20:28:36 +03:00
"exclude": ["node_modules"]
}