-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (43 loc) · 1.07 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"target": "es2017",
"lib": [
"dom",
"dom.iterable",
"scripthost",
"es2017",
"es2018",
"es2019"
],
"esModuleInterop": true,
"module": "amd",
"moduleResolution": "node",
"sourceMap": false,
"removeComments": false,
"alwaysStrict": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"pretty": true,
"baseUrl": "./",
"outDir": "Resources/Public/JavaScript/",
"paths": {
"TYPO3/CMS/DynamicGrid/*": [
"Resource/Private/TypeScript/*"
],
},
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true
}
],
"typeRoots": [
"node_modules/@types",
"types"
]
},
"include": ["Resources/Private/TypeScript/**/*.ts"]
}