-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
33 lines (33 loc) · 1014 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
28
29
30
31
32
33
{
"compilerOptions": {
"module": "esnext",
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "ES2016", "esnext", "es2015.iterable"],
"moduleResolution": "node",
"noEmit": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es6",
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": ".",
"removeComments": true,
"incremental": true,
"paths": {
"@app/*": ["./src/*"],
"@app-strings": ["./src/content/strings/a11y"],
"ui": ["./node_modules/@a11ywatch/ui/main"]
}
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "src/components/general/lists/render/issues/analytics-headertsx"]
}