procyon/tsconfig.json

53 lines
903 B
JSON
Raw Normal View History

2019-03-13 22:33:52 +01:00
{
"compilerOptions": {
"baseUrl": ".",
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
"jsx": "react",
"paths": {
"documentation/*": [
"./modules/documentation/src/modules/*"
],
"treejs-components/*": [
"./modules/treejs-components/src/*"
],
"treejs-constants/*": [
"./modules/treejs-constants/src/*"
],
"treejs-utils": [
"./modules/treejs-utils"
],
2019-04-21 20:27:51 +02:00
"treejs-forms/*": [
"./modules/treejs-forms/src/*"
],
2019-03-13 22:33:52 +01:00
"treejs-redux/*": [
"./modules/treejs-redux/src/*"
],
"types/*": [
"./modules/types/*"
]
},
"types": [
"node",
"jest"
]
},
"include": [
"./**/*.ts",
"./**/*.tsx"
],
"exclude": [
"./node_modules",
"./modules/**/node_modules",
"./**/__tests__/*.tsx"
]
}