A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
692 B
32 lines
692 B
6 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"allowJs": true,
|
||
|
"checkJs": true,
|
||
|
"jsx": "react",
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./build",
|
||
|
"removeComments": true,
|
||
|
"importHelpers": true,
|
||
|
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"strictBindCallApply": true,
|
||
|
"strictPropertyInitialization": true,
|
||
|
"noImplicitThis": true,
|
||
|
"alwaysStrict": true,
|
||
|
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true
|
||
|
}
|
||
|
}
|