66 lines
No EOL
1.3 KiB
JSON
66 lines
No EOL
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"removeComments": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"emitDeclarationOnly": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es6",
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"documentation/*": [
|
|
"./modules/documentation/src/*"
|
|
],
|
|
"@romanjaros/treejs-components/*": [
|
|
"./modules/treejs-components/src/*"
|
|
],
|
|
"@romanjaros/treejs-api/*": [
|
|
"./modules/treejs-api/src/*"
|
|
],
|
|
"@romanjaros/treejs-auth/*": [
|
|
"./modules/treejs-auth/src/*"
|
|
],
|
|
"@romanjaros/treejs-constants/*": [
|
|
"./modules/treejs-constants/src/*"
|
|
],
|
|
"@romanjaros/treejs-utils": [
|
|
"./modules/treejs-utils/src/"
|
|
],
|
|
"@romanjaros/treejs-forms/*": [
|
|
"./modules/treejs-forms/src/*"
|
|
],
|
|
"@romanjaros/treejs-localization/*": [
|
|
"./modules/treejs-localization/src/*"
|
|
],
|
|
"@romanjaros/treejs-types/*": [
|
|
"./modules/treejs-types/src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"./**/__tests__/*.tsx",
|
|
".vscode",
|
|
"**/tsconfig.json"
|
|
]
|
|
} |