26 lines
597 B
JSON
26 lines
597 B
JSON
{
|
|
"include": ["typings/**/*.d.ts"],
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["es2015", "es2016", "esnext", "dom"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|