mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
14c7b25fcc
Pulling out a few core points from the readme... This example builds from /src into /dist, managing the different expectations of express.js (es5, commonjs) and next.js (es6) by using a pair of tsconfig.json files, both of which are run by `npm run build-ts` or any of the other npm targets. Hot module reloading is largely but not completely wired up (nodemon is watching /dist but tsc isn't set up to watch /src and transpile changes in /src to /dist automatically (that's mainly because I wasn't sure how to start both nodemon and a pair of tsc watchers and be confident all would get shut down when the user killed dev mode). The readme suggests running `npm run build-ts` manually in another window to push changes from /src into /dev and on into the browser. tslint is also wired up via `npm run tslint`
32 lines
691 B
JSON
32 lines
691 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"outDir": "./dist/server",
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016"
|
|
]
|
|
},
|
|
"include": ["./src/server/**/*"]
|
|
}
|