-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
42 lines (42 loc) · 1.21 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
{
"compilerOptions": {
"target": "es6",
"lib": [ "esnext", "dom", "dom.iterable" ],
"baseUrl": "./src",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"sourceMap": true,
"paths": {
"@/blocks": ["wp-blocks"],
"@/components": [ "components" ],
"@/constants": [ "constants" ],
"@/features": [ "features" ],
"@/hooks": [ "hooks" ],
"@/graphql": [ "__generated__" ],
"@/lib/*": [ "lib/*" ],
"@/plugins/*": [ "plugins/*" ],
"@/styles/*": [ "styles/*" ],
"@/types": [ "types" ],
"@/utils/*": [ "utils/*" ],
"@faustConfig": [ "../faust.config.js" ],
"@possibleTypes": [ "../possibleTypes.json" ],
"@graphqlTypes": [ "__generated__/graphql.ts" ],
"@gql": [ "__generated__/index.ts" ]
},
"incremental": true
},
"include": [ "next-env.d.ts", "modules.d.ts", "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx" ],
"exclude": [ "node_modules", "public", "src/__generated__", ".eslintrc.js" ]
}