mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-10-14 16:10:10 +00:00
Feature/webpack integration (#9)
* working webpack into template * removing package-lock.json * implementing source
This commit is contained in:
parent
2b9595746b
commit
69b5363c88
11 changed files with 208 additions and 501 deletions
28
tooling.tsconfig.json
Normal file
28
tooling.tsconfig.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"outDir": "./tools/",
|
||||
"rootDir": "./tools/",
|
||||
"removeComments": true,
|
||||
"moduleResolution": "node",
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"types": [
|
||||
"node",
|
||||
"chrome"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"./tools/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"./src/*.ts",
|
||||
"./src/**/*.ts",
|
||||
"./dist/*.ts",
|
||||
"./dist/*.js"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue