mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-06-21 18:11:08 +00:00
28 lines
614 B
JSON
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"
|
|
]
|
|
}
|