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.
38 lines
851 B
38 lines
851 B
{ |
|
"compilerOptions": { |
|
"target": "es2017", |
|
"module": "commonjs", |
|
"lib": ["es6", "dom", "es2017"], |
|
"allowJs": true, |
|
"checkJs": true, |
|
"jsx": "react", |
|
"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, |
|
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types"], |
|
|
|
"experimentalDecorators": true, |
|
"emitDecoratorMetadata": true |
|
}, |
|
"include": [ |
|
"src" |
|
] |
|
}
|
|
|