1
0
mirror of https://github.com/uetchy/namae.git synced 2025-09-10 18:16:37 +09:00

feat(web): typescript

This commit is contained in:
2019-09-01 01:28:24 +09:00
parent b07b597d2e
commit 88a0374594
42 changed files with 846 additions and 642 deletions

25
web/tsconfig.json Normal file
View File

@@ -0,0 +1,25 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
}