wisemapping-frontend/packages/editor/tsconfig.json

25 lines
490 B
JSON
Raw Normal View History

2022-01-25 19:10:40 +01:00
{
2022-01-30 11:37:14 +01:00
"include": [
"src/**/*"
, "../mindplot/src/components/widget/FloatingTip.ts" ],
2022-01-25 19:10:40 +01:00
"compilerOptions": {
2022-01-30 11:37:14 +01:00
"jsx": "react",
2022-01-25 19:10:40 +01:00
"outDir": "./dist/",
"sourceMap": true,
2022-01-30 11:37:14 +01:00
"noImplicitAny": false,
"module": "amd",
"moduleResolution": "node",
"strict": false,
"target": "es6",
"allowJs": true,
2022-01-25 19:10:40 +01:00
"esModuleInterop": true,
2022-01-30 11:37:14 +01:00
"declaration": true,
"rootDirs": [
"src",
2022-02-04 20:26:54 +01:00
],
"resolveJsonModule": true
2022-01-25 19:10:40 +01:00
},
2022-01-30 11:37:14 +01:00
"exclude": [
"node_modules"
]
}