forked from omegaup/omegaup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 729 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 729 Bytes
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
{
"compilerOptions": {
"outDir": "./built/",
"sourceMap": true,
"target": "es6",
"downlevelIteration": true,
"strict": true,
"lib": ["DOM", "ES5", "ScriptHost", "ES2020.Promise", "dom.iterable"],
"types": [
"gapi",
"gapi.auth2",
"bootstrap-datepicker",
"bootstrap.v3.datetimepicker"
],
"module": "es6",
"moduleResolution": "node",
"experimentalDecorators": true,
"listFiles": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"paths": {
"@/*": ["frontend/www/*"]
}
},
"include": ["./frontend/www/js/omegaup/**/*.vue", "./frontend/www/**/*.ts"],
"exclude": ["./node_modules", "./cypress"]
}