forked from maxdavidson/rollup-plugin-sourcemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 564 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 564 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "ESNext",
"declarationDir": "dist",
"declaration": true,
"lib": ["es2015", "es2016", "es2017", "esnext"],
"emitDeclarationOnly": true,
"rootDir": "src",
"outDir": "dist",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"esModuleInterop": true,
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"types": ["node"]
},
"include": ["src"],
"exclude": ["node_modules"]
}