BrowserExtensionTemplate/tooling.tsconfig.json
Jonas Pfalzgraf 2319a1fd9b
Version 1.4.0 (#10)
* Feature/webpack integration (#9)

* working webpack into template

* removing package-lock.json

* implementing source

* style update
2023-01-24 01:07:55 +01:00

28 lines
614 B
JSON

{
"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"
]
}