forked from codex-team/editor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (23 loc) · 811 Bytes
/
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
{
"compilerOptions" : {
"strict": true,
"sourceMap": true,
"target": "es2017",
"declaration": false,
"moduleResolution": "node", // This resolution strategy attempts to mimic the Node.js module resolution mechanism at runtime
"lib": ["dom", "es2017", "es2018", "es2019"],
// allows to import .json files for i18n
"resolveJsonModule": true,
// allows to omit export default in .json files
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"baseUrl": "./",
"paths": {
"@/types": [ "./types/" ],
"@/types/*": [ "./types/*" ],
},
// @todo move to cypress/tsconfig.json when cypress will support overriding tsconfig path
// @see https://github.com/cypress-io/cypress/issues/23045
"esModuleInterop": true
},
}