16 lines
340 B
JSON
16 lines
340 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es6"],
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"noImplicitAny": true,
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"noEmitOnError": true,
|
|
"strict": true,
|
|
"incremental": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|