mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
99fb191286
* Add custom-server-typescript example (see #3694) * Fix linting errors in custom-server-typescript * Provide proper arguments to ts-node. * Fix import and fix all linting errors. * Use import in server as well. * Update nodemon.json
29 lines
571 B
JSON
29 lines
571 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016"
|
|
],
|
|
"outDir": "lib/"
|
|
},
|
|
"include": [
|
|
"server/**/*.ts"
|
|
]
|
|
} |