forked from annikkiwools2/sbv2-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 911 Bytes
/
tsconfig.base.json
File metadata and controls
39 lines (39 loc) · 911 Bytes
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
{
"exclude": [
"node_modules",
"**/*.test.ts",
"tests"
],
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"lib": [
"ES2022"
],
"moduleResolution": "node",
"inlineSourceMap": true,
"inlineSources": true,
"declaration": true,
"declarationMap": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"composite": true,
"skipLibCheck": true,
// strict
"strict": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitReturns": true,
"strictPropertyInitialization": true,
"esModuleInterop": true,
"outDir": "dist/esm/"
// "rootDir": "./src",
// "baseUrl": "./",
// "types": ["node", "jest"],
}
}