35 строки
765 B
JSON
35 строки
765 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["es5", "es6", "dom"],
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": ".",
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"files": ["images.d.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"webpack",
|
|
"jest",
|
|
"webpack.*",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"reportFiles": [
|
|
"./src/**/*"
|
|
]
|
|
}
|
|
} |