20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2016",
|
|
"lib": [ "ES2016" ],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["src"]
|
|
}
|