|
@@ -1,9 +1,15 @@
|
|
|
{
|
|
|
"compilerOptions": {
|
|
|
- "outDir": "./lib",
|
|
|
+ "outDir": "lib",
|
|
|
"target": "ES2015",
|
|
|
+ "removeComments": true,
|
|
|
"module": "ES2015",
|
|
|
"declaration": true,
|
|
|
- "declarationDir": "./types"
|
|
|
- }
|
|
|
+ "declarationDir": "types",
|
|
|
+ "esModuleInterop": true,
|
|
|
+ "skipLibCheck": true,
|
|
|
+ "forceConsistentCasingInFileNames": true,
|
|
|
+ },
|
|
|
+ "include": ["./src/**/*.ts"],
|
|
|
+ "exclude": ["node_modules"]
|
|
|
}
|