-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 704 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 704 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
{
"compilerOptions": {
"module": "NodeNext",
"target": "ES2020",
"baseUrl": "src",
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "Node16",
"declaration": true,
"declarationMap": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"newLine": "lf",
"noEmitOnError": true,
"lib": ["ES2020"],
"noImplicitAny": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"checkJs": true,
"types": ["node"]
},
"include": ["src/**/*", "src/cjs/package.json"],
"ignore": ["node_modules", "dist"]
}