2019-03-03 06:39:57 +00:00
|
|
|
{
|
2020-06-16 10:20:51 +00:00
|
|
|
"include": ["typings/**/*.d.ts", "example/**/*.ts", "example/**/*.tsx"],
|
2019-03-03 06:39:57 +00:00
|
|
|
"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,
|
2020-06-16 10:20:51 +00:00
|
|
|
"lib": ["es2015", "es2016", "esnext", "dom"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true
|
2019-03-03 06:39:57 +00:00
|
|
|
},
|
2020-06-16 10:20:51 +00:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
2019-03-03 06:39:57 +00:00
|
|
|
}
|