root / tsconfig.json @ 2c8d373c
Historique | Voir | Annoter | Télécharger (605 octets)
1 | f3d5fa3b | Eric Seigne | { |
---|---|---|---|
2 | "compilerOptions": {
|
||
3 | "module": "commonjs", |
||
4 | "target": "es5", |
||
5 | "experimentalDecorators": true, |
||
6 | "emitDecoratorMetadata": true, |
||
7 | "noEmitHelpers": true, |
||
8 | "noEmitOnError": true, |
||
9 | "skipLibCheck": true, |
||
10 | "lib": [
|
||
11 | "es6",
|
||
12 | "dom",
|
||
13 | "es2015.iterable"
|
||
14 | ], |
||
15 | "baseUrl": ".", |
||
16 | "paths": {
|
||
17 | "~/*": [
|
||
18 | "src/*"
|
||
19 | ], |
||
20 | "*": [
|
||
21 | "./node_modules/*"
|
||
22 | ] |
||
23 | } |
||
24 | }, |
||
25 | "exclude": [
|
||
26 | "node_modules",
|
||
27 | "platforms"
|
||
28 | ] |
||
29 | } |