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"],
|
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,
|
2021-02-25 16:48:45 +09:00
|
|
|
"jsx": "react-jsx",
|
2021-02-25 15:13:15 +09:00
|
|
|
"allowJs": 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
|
|
|
}
|