17 lines
367 B
JSON
17 lines
367 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": ["./example", "node_modules"],
|
|
"include": ["src/**/*"]
|
|
}
|