-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
45 lines (45 loc) · 1.24 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
44
45
{
"compilerOptions": {
"plugins": [{ "name": "typescript-plugin-css-modules" }],
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"importHelpers": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noEmit": true,
"isolatedModules": true,
"jsx": "react-jsx",
"moduleResolution": "bundler",
"module": "esnext",
"lib": ["dom", "esnext"],
"skipLibCheck": true,
"target": "esnext",
"incremental": true
},
"exclude": ["node_modules"],
"include": [
"main-site/**/*.js",
"main-site/**/*.ts",
"main-site/**/*.tsx",
"builds/**/*.js",
"builds/**/*.ts",
"builds/**/*.tsx",
"paste/**/*.js",
"paste/**/*.ts",
"paste/**/*.tsx",
"golf/**/*.js",
"golf/**/*.ts",
"golf/**/*.tsx",
"shared/**/*.js",
"shared/**/*.ts",
"shared/**/*.tsx",
"eslint.config.js"
]
}