generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
tsconfig.json
27 lines (27 loc) · 893 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"strict": true,
"lib": ["DOM", "DOM.Iterable", "es2015"],
"allowJs": false,
"useDefineForClassFields": true,
"module": "ESNext",
"target": "es2017",
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": false,
"rootDir": ".",
"outDir": "dist/js",
"moduleResolution": "node",
"noEmit": true,
"noEmitOnError": true,
"jsx": "react-jsx",
"typeRoots": ["node_modules/@types/", "node_modules"],
"resolveJsonModule": true,
"types": ["vite-plugin-svgr/client", "vite/client", "chrome", "tampermonkey"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "src-tauri", "vite.config*.ts", ".eslintrc.js", "playwright.config.ts", "e2e"]
}