forked from JamesonRGrieve/appwrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 1.27 KB
/
tsconfig.json
File metadata and controls
40 lines (40 loc) · 1.27 KB
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
{
"compilerOptions": {
"target": "es5",
"module": "CommonJS",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noImplicitAny": true,
"jsx": "react-jsx",
"strict": false, // TODO Make this work.
"skipLibCheck": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"strictNullChecks": false, // TODO Make this work.
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["../../../src/*"],
"@/next-log/*": ["../../../src/lib/next-log/src/*"],
"@/zod2gql": ["../../../src/lib/zod2gql/src"],
"@/auth/*": ["../../../src/components/auth/src/*"],
"@/appwrapper/*": ["../../../src/components/appwrapper/src/*"],
"@/dynamic-form/*": ["../../../src/components/dynamic-form/src/*"],
"@/interactive/*": ["../../../src/interactive/src/*"],
"@/interface/*": ["../../../src/interface/*"],
"@/iteration/*": ["../../../src/iteration/*"]
}
},
"include": ["src/**/*", "src/index.ts", "src/Style/**/*.css"],
"exclude": ["node_modules", "dist", "src/**/*.stories.*"]
}