2019-04-21 19:17:15 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"jsx": "preserve",
|
2019-04-23 18:52:12 +09:00
|
|
|
"lib": ["dom", "es2017"],
|
2019-04-21 19:17:15 +09:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2019-04-21 19:22:18 +09:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
2019-04-23 18:52:12 +09:00
|
|
|
"target": "esnext",
|
|
|
|
"typeRoots": ["node_modules/@types", "types"]
|
2019-04-21 19:17:15 +09:00
|
|
|
}
|
|
|
|
}
|