1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 04:30:31 +09:00
namae/tsconfig.json

23 lines
577 B
JSON
Raw Normal View History

2019-09-01 01:28:24 +09:00
{
"compilerOptions": {
2021-02-25 15:13:15 +09:00
"target": "es2015",
2020-06-29 12:24:01 +09:00
"lib": ["dom", "dom.iterable", "ESNext"],
2021-04-22 16:41:01 +09:00
"module": "ESNext",
2021-07-04 16:59:18 +09:00
"moduleResolution": "node",
"resolveJsonModule": true,
2019-09-01 01:28:24 +09:00
"skipLibCheck": true,
2021-04-22 16:41:01 +09:00
"jsx": "react-jsx",
"allowJs": true,
2019-09-01 01:28:24 +09:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2021-04-22 16:41:01 +09:00
"sourceMap": true,
2019-09-01 01:28:24 +09:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
2021-02-25 16:48:45 +09:00
"downlevelIteration": true,
"noFallthroughCasesInSwitch": true
2019-09-01 01:28:24 +09:00
},
2021-02-25 16:48:45 +09:00
"include": ["api", "src", "types"]
2019-09-01 01:28:24 +09:00
}