1
Fork 0
webextension-template/tsconfig.json

19 lines
300 B
JSON
Raw Permalink Normal View History

2022-03-02 12:17:15 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"outDir": "build",
"strict": true,
"target": "ESNext"
},
"include": [
"source/**/*.ts",
"vite.config.ts"
]
}