mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
21 lines
554 B
JSON
21 lines
554 B
JSON
{
|
|
"extends": "@abhijithvijayan/tsconfig",
|
|
"compilerOptions": {
|
|
"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'.
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"declaration": false,
|
|
"isolatedModules": true,
|
|
/* Additional Checks */
|
|
"useDefineForClassFields": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"source",
|
|
"webpack.config.ts"
|
|
]
|
|
} |