feat: add tsconfig file

このコミットが含まれているのは:
sinkaroid 2022-06-03 09:33:47 +07:00
コミット 2dce148aed
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: A7DF4E245FDD8159
1個のファイルの変更26行の追加0行の削除

26
tsconfig.json ノーマルファイル
ファイルの表示

@ -0,0 +1,26 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"target": "ESNext",
"baseUrl": "src",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "commonjs",
"paths": {},
"typeRoots": ["./node_modules/@types"],
"inlineSourceMap": true,
"charset": "UTF-8",
"downlevelIteration": true,
"newLine": "lf",
"strict": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"declaration": true
},
"include": ["**/*"],
"exclude": ["node_modules", "build", "out", "tmp", "logs", "test"]
}