-
-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.18 KB
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 1.18 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
41
42
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"noEmitOnError": true,
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["@cloudflare/workers-types", "vitest/globals"],
"paths": {
"@sonicjs-cms/core": ["./packages/core/src/index.ts"],
"@sonicjs-cms/core/*": ["./packages/core/src/*"],
"@sonicjs-cms/templates": ["./packages/templates/src/index.ts"],
"@sonicjs-cms/templates/*": ["./packages/templates/src/*"]
}
},
"include": ["packages/*/src/**/*", "tests/**/*"],
"exclude": [
"node_modules",
"**/node_modules",
"**/dist",
"**/build",
"**/.wrangler",
"my-sonicjs-app"
]
}