You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
356 B
19 lines
356 B
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"target": "ES2018",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "lib",
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"declaration": true,
|
||
|
"skipLibCheck": true,
|
||
|
"allowJs": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"lib",
|
||
|
"spec",
|
||
|
"commitlint.config.js"
|
||
|
]
|
||
|
}
|