Mercurial > obsidian-remember-file-state
annotate tsconfig.json @ 19:2a9e941c96ee
Bring new build tools from the sample plugin project
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 18 Mar 2022 19:19:18 -0700 |
parents | 7975d7c73f8a |
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 } |