web-extension-starter/tsconfig.json
2020-04-07 23:43:12 +05:30

24 lines
654 B
JSON

{
"extends": "@abhijithvijayan/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "es5", // ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'.
"module": "esnext", // Module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
"jsx": "react",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"noEmit": true, // Do not emit outputs.
"esModuleInterop": true,
"isolatedModules": true,
/* Additional Checks */
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"skipLibCheck": true,
},
"include": [
"source"
]
}