-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": false,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"module": "esnext",
"lib": ["esnext", "dom", "dom.iterable"],
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "src/script/auth",
"paths": {
"Components/*": ["./src/script/components/*"],
"Hooks/*": ["./src/script/hooks/*"],
"I18n/*": ["./src/i18n/*"],
"Resource/*": ["./resource/*"],
"Util/*": ["./src/script/util/*"]
},
"skipLibCheck": true,
"resolveJsonModule": true,
"rootDirs": ["src/script"],
"target": "ESNext",
"strict": true
},
"types": ["@types/wicg-file-system-access"],
"exclude": ["node_modules", "server/", "src/sw.js", "src/worker/"]
}