1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "version": "1.5.0-alpha",
- "compilerOptions": {
- "target": "es6",
- "module": "commonjs",
- "declaration": false,
- "noImplicitAny": true,
- "removeComments": true,
- "noLib": false,
- "preserveConstEnums": true,
- "suppressImplicitAnyIndexErrors": true,
- "out": "./js/app.js"
- },
- "filesGlob": [
- "./**/*.ts",
- "!./node_modules/**/*.ts"
- ],
- "files": [
- "./src/app.ts",
- "./src/mock.ts",
- "./src/routes.ts",
- "./src/actions/actions.ts",
- "./src/dispatcher/dispatcher.ts",
- "./src/dispatcher/invariant.ts",
- "./src/external/react/react-addons.d.ts",
- "./src/external/react/react.d.ts",
- "./src/external/page/page.d.ts",
- "./src/stores/asyncT.ts",
- "./src/stores/card.ts",
- "./src/stores/dataset.ts",
- "./src/stores/deck.ts",
- "./src/stores/entity.ts",
- "./src/stores/eventEmitter.ts",
- "./src/stores/id.ts",
- "./src/stores/store.ts",
- "./src/stores/template.ts",
- "./src/stores/viewState.ts",
- "./src/views/components/deck.ts",
- "./src/views/view.ts",
- "./src/views/decks.ts",
- "./src/views/deck.ts",
- "./src/views/header.ts",
- "./src/views/notfound.ts",
- "./src/views/main.ts",
- "./src/views/ui.ts"
- ]
- }
|