Mercurial > obsidian-remember-file-state
annotate tsconfig.json @ 60:e431a6fa4b51 default tip
Added tag 1.1.2 for changeset 1d6fe880946f
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 21 Nov 2023 17:25:00 -0800 |
parents | 2a9e941c96ee |
children |
rev | line source |
---|---|
0 | 1 { |
2 "compilerOptions": { | |
3 "baseUrl": ".", | |
4 "inlineSourceMap": true, | |
5 "inlineSources": true, | |
6 "module": "ESNext", | |
7 "target": "ES6", | |
8 "allowJs": true, | |
9 "noImplicitAny": true, | |
10 "moduleResolution": "node", | |
11 "importHelpers": true, | |
19
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
0
diff
changeset
|
12 "isolatedModules": true, |
0 | 13 "lib": [ |
14 "DOM", | |
15 "ES5", | |
16 "ES6", | |
17 "ES7" | |
18 ] | |
19 }, | |
20 "include": [ | |
21 "**/*.ts" | |
22 ] | |
23 } |