1
Fork 0
webextension-template/tsconfig.json

19 lines
300 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"outDir": "build",
"strict": true,
"target": "ESNext"
},
"include": [
"source/**/*.ts",
"vite.config.ts"
]
}