18 lines
381 B
JSON
18 lines
381 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"outFile": "bundle.js",
|
||
|
|
"allowJs": true,
|
||
|
|
"checkJs": true,
|
||
|
|
"declaration": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"module": "amd",
|
||
|
|
"target": "es5"
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"./index.d.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules"
|
||
|
|
]
|
||
|
|
}
|