procyon/tsconfig.json

76 lines
1.3 KiB
JSON
Raw Normal View History

2019-03-13 22:33:52 +01:00
{
"compilerOptions": {
2019-10-23 20:32:30 +02:00
"removeComments": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": false,
"esModuleInterop": true,
2019-10-23 20:32:30 +02:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2019-10-25 22:47:38 +02:00
"emitDeclarationOnly": false,
2019-10-23 20:32:30 +02:00
"resolveJsonModule": true,
"skipLibCheck": true,
2019-12-27 10:44:22 +01:00
"moduleResolution": "node",
2019-10-23 20:32:30 +02:00
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"es2015",
"dom"
],
2019-10-23 20:32:30 +02:00
"jsx": "react",
2019-10-25 22:47:38 +02:00
"baseUrl": "./",
2019-03-13 22:33:52 +01:00
"paths": {
"config/*": [
"./config/*"
],
"@treejs/components/*": [
"./packages/components/src/*"
],
"@treejs/api/*": [
"./packages/api/src/*"
],
"@treejs/auth/*": [
"./packages/auth/src/*"
],
"@treejs/constants/*": [
"./packages/constants/src/*"
],
"@treejs/utils": [
"./packages/utils/src/"
],
"@treejs/forms/*": [
"./packages/forms/src/*"
],
"@treejs/hooks/*": [
"./packages/hooks/src/*"
],
"@treejs/localization/*": [
"./packages/localization/src/*"
],
"@treejs/styles/*": [
"./packages/styles/src/*"
],
"@treejs/types/*": [
"./packages/types/src/*"
]
2019-03-13 22:33:52 +01:00
},
"types": [
"node",
"jest",
2022-06-12 19:59:14 +00:00
"mdx"
2019-03-13 22:33:52 +01:00
]
2019-10-23 20:32:30 +02:00
},
"include": [
"./**/*.ts",
"./**/*.tsx",
2022-07-17 09:20:28 +02:00
"./**/*.mdx"
2019-10-23 20:32:30 +02:00
],
"exclude": [
"node_modules",
2020-07-30 07:35:16 +02:00
".idea",
"packages/**/dist",
2021-07-05 17:38:18 +02:00
"./**/__tests__/*.tsx",
2019-10-25 22:47:38 +02:00
"**/tsconfig.json"
2019-10-23 20:32:30 +02:00
]
}