18 lines
402 B
JSON
18 lines
402 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es6"],
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"noImplicitAny": true,
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"noEmitOnError": true,
|
|
"strict": true,
|
|
"incremental": true,
|
|
"sourceMap": true,
|
|
"typeRoots": ["./node_modules"],
|
|
"types": []
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|