21 lines
385 B
JSON
21 lines
385 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ESNext",
|
|
],
|
|
"outDir": "dist",
|
|
"module": "CommonJS",
|
|
"target": "ES6",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"alwaysStrict": true,
|
|
"allowUnreachableCode": false,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|