1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-16 20:20:38 +09:00
namae/tsconfig.json

21 lines
491 B
JSON
Raw Normal View History

2019-09-01 01:28:24 +09:00
{
"compilerOptions": {
"target": "es5",
2020-06-29 12:24:01 +09:00
"lib": ["dom", "dom.iterable", "ESNext"],
2019-09-01 01:28:24 +09:00
"skipLibCheck": true,
"esModuleInterop": true,
2020-06-29 12:24:01 +09:00
"sourceMap": true,
2019-09-01 01:28:24 +09:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2020-06-29 12:24:01 +09:00
"module": "ESNext",
2019-09-01 01:28:24 +09:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"allowJs": true
2019-09-01 01:28:24 +09:00
},
2020-07-07 18:47:40 +09:00
"include": ["src", "types"]
2019-09-01 01:28:24 +09:00
}