##// END OF EJS Templates
tests moved under src/ folder...
tests moved under src/ folder removed requirejs dependency from the main source set

File last commit:

r50:7a4fac383b10 di-typescript
r50:7a4fac383b10 di-typescript
Show More
tsconfig.json
21 lines | 446 B | application/json | JsonLexer
cin
working on multiplaftorm support (node, browser)
r47 {
"compilerOptions": {
"target": "es3",
"module": "amd",
"sourceMap": true,
"declaration": true,
cin
changed the project structure
r49 "moduleResolution": "node",
"listFiles": true,
cin
working on multiplaftorm support (node, browser)
r47 "lib": [
"es5",
"es2015.promise",
cin
working on multi-platform support
r48 "es2015.symbol",
"dom"
],
"rootDirs": [
cin
changed the project structure
r49 "main/ts",
cin
tests moved under src/ folder...
r50 "amd/ts",
"cjs/ts"
cin
working on multi-platform support
r48 ],
"types": []
cin
changed the project structure
r49 }
cin
working on multiplaftorm support (node, browser)
r47 }