16 lines
443 B
JSON
16 lines
443 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "app/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": [ "./types", "./node_modules/@types"]
|
|
},
|
|
"exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
|
}
|