forked from zkcloudworker/zkcloudworker-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.web.json
24 lines (24 loc) · 961 Bytes
/
tsconfig.web.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
{
"compilerOptions": {
"target": "ES2021",
"outDir": "./dist/lib/web",
"lib": ["ES2021", "DOM"],
"moduleResolution": "node",
"strict": true /* Enable all strict type-checking options. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"composite": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"useDefineForClassFields": false,
"importHelpers": true,
"noEmitOnError": false,
"allowJs": true,
"sourceMap": true
},
"include": ["src/**/*"]
}