forked from polywock/globalSpeed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (26 loc) · 741 Bytes
/
tsconfig.json
File metadata and controls
28 lines (26 loc) · 741 Bytes
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
28
{
"compilerOptions": {
"target": "es2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["DOM", "DOM.iterable", "ESNext", "WebWorker"],
"types": ["@types/chrome", "@types/react", "@types/react-dom", "@types/audioworklet"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitAny": true,
"allowJs": true,
"sourceMap": false,
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"src/*": ["src/*"],
"notFirefox/*": ["src/*"],
"isFirefox/*": ["src/*"]
},
"outDir": "build"
},
"exclude": ["./node_modules", "./build", "./buildFf"]
}